diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-01-22 06:28:57 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 17:21:50 -0500 |
commit | cdf263f1c59cad9b1567e759890b9be044972856 (patch) | |
tree | d5fa705326c9253e4949577adeffcb8b7853e0e7 /drivers/i2c/busses | |
parent | a417bbd33b2ed7a3b2bc78cbadb820079d453328 (diff) |
[PATCH] I2C: fix sx200_acb build on other arches
scx200_acb is only useful on a few Geode-based systems, and won't
compile on non-x86 systems due to the lack of asm/msr.h, as reported
by Andrew Morton. Thus, we should make that driver depend on X86.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r-- | drivers/i2c/busses/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index 1a3bf42351b3..7d2705a68e09 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig | |||
@@ -390,7 +390,7 @@ config SCx200_I2C_SDA | |||
390 | 390 | ||
391 | config SCx200_ACB | 391 | config SCx200_ACB |
392 | tristate "Geode ACCESS.bus support" | 392 | tristate "Geode ACCESS.bus support" |
393 | depends on I2C && PCI | 393 | depends on X86_32 && I2C && PCI |
394 | help | 394 | help |
395 | Enable the use of the ACCESS.bus controllers on the Geode SCx200 and | 395 | Enable the use of the ACCESS.bus controllers on the Geode SCx200 and |
396 | SC1100 processors and the CS5535 and CS5536 Geode companion devices. | 396 | SC1100 processors and the CS5535 and CS5536 Geode companion devices. |