diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-02-18 11:23:19 (GMT) |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-03-21 17:19:33 (GMT) |
commit | 06f07c9ec741c6ffffe53a30862fa889d8799a59 (patch) | |
tree | eccd9a2eb6faed6593a454d700de75d805e852f5 /arch/arm | |
parent | 4bbef1da789cbd89f57734975e6a211a42b382f5 (diff) | |
download | linux-06f07c9ec741c6ffffe53a30862fa889d8799a59.tar.xz |
ARM: davinci: fix Kconfig for DA850_EVM
The DAVINCI_DA850_EVM board uses an unusual method to
enable the GPIO_PCA953X and KEYBOARD_GPIO_POLLED symbols,
which leads to the dependencies on these symbols being
ignored. As GPIO_PCA953X actually requires I2C, that
can lead to build failures when I2C is disabled.
This patch removes the duplicate symbol definitions
and instead enables them from the davinci_all_defconfig
file.
A different question whether we actually want to automatically
enable them at all or rather put them into defconfig,
but that should be a separate patch.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Cc: davinci-linux-open-source@linux.davincidsp.com
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/configs/davinci_all_defconfig | 2 | ||||
-rw-r--r-- | arch/arm/mach-davinci/Kconfig | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig index ab2f737..932b932 100644 --- a/arch/arm/configs/davinci_all_defconfig +++ b/arch/arm/configs/davinci_all_defconfig @@ -198,3 +198,5 @@ CONFIG_DEBUG_ERRORS=y # CONFIG_CRYPTO_ANSI_CPRNG is not set # CONFIG_CRYPTO_HW is not set CONFIG_CRC_T10DIF=m +CONFIG_GPIO_PCA953X=y +CONFIG_KEYBOARD_GPIO_POLLED=y diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index a075b3e..626d2b8 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -214,11 +214,6 @@ config DA850_WL12XX Say Y if you want to use a wl1271 expansion card connected to the AM18x EVM. -config GPIO_PCA953X - default MACH_DAVINCI_DA850_EVM - -config KEYBOARD_GPIO_POLLED - default MACH_DAVINCI_DA850_EVM config MACH_TNETV107X bool "TI TNETV107X Reference Platform" |