diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-03-05 12:43:06 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-03-07 16:17:38 -0500 |
commit | 860fb8c134ebca9be8bc2ddd2b13e19ac10c192e (patch) | |
tree | 8ecebf46c290a39c80dda2812b8023242ed34349 | |
parent | 8e7aafe41be2a7cd5c181ed68876e9ec55ccdba7 (diff) |
mfd: Fix lpc_sch related depends/selects, fix build error
LPC_SCH is selected by GPI_SCH and I2C_ISCH, even when PCI is not
enabled, but LPC_SCH depends on PCI, so make GPI_SCH and I2C_ISCH
also depend on PCI.
Those 2 selects also need to select what LPC_SCH selects,
since kconfig does not follow selects.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Denis Turischev <denis@compulab.co.il>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | drivers/gpio/Kconfig | 3 | ||||
-rw-r--r-- | drivers/i2c/busses/Kconfig | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 60cb3632c8fd..fee678f74a19 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
@@ -96,7 +96,8 @@ config GPIO_VR41XX | |||
96 | 96 | ||
97 | config GPIO_SCH | 97 | config GPIO_SCH |
98 | tristate "Intel SCH GPIO" | 98 | tristate "Intel SCH GPIO" |
99 | depends on GPIOLIB | 99 | depends on GPIOLIB && PCI |
100 | select MFD_CORE | ||
100 | select LPC_SCH | 101 | select LPC_SCH |
101 | help | 102 | help |
102 | Say yes here to support GPIO interface on Intel Poulsbo SCH. | 103 | Say yes here to support GPIO interface on Intel Poulsbo SCH. |
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index f22eff1da87e..4cd1ff77ceda 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig | |||
@@ -105,6 +105,8 @@ config I2C_I801 | |||
105 | 105 | ||
106 | config I2C_ISCH | 106 | config I2C_ISCH |
107 | tristate "Intel SCH SMBus 1.0" | 107 | tristate "Intel SCH SMBus 1.0" |
108 | depends on PCI | ||
109 | select MFD_CORE | ||
108 | select LPC_SCH | 110 | select LPC_SCH |
109 | help | 111 | help |
110 | Say Y here if you want to use SMBus controller on the Intel SCH | 112 | Say Y here if you want to use SMBus controller on the Intel SCH |