aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2012-04-09 15:05:44 +0200
committerBen Hutchings <ben@decadent.org.uk>2012-06-10 14:41:39 +0100
commit7e81c4be6d751d87fff5f5d06c6f1b82013684df (patch)
tree32fea4103248cdf95a18c38745f54581fdf4438d /arch/microblaze
parent190fcdc0cc35d3eb01a97d9558c6132be0a97475 (diff)
downloadkernel_samsung_smdk4412-7e81c4be6d751d87fff5f5d06c6f1b82013684df.zip
kernel_samsung_smdk4412-7e81c4be6d751d87fff5f5d06c6f1b82013684df.tar.gz
kernel_samsung_smdk4412-7e81c4be6d751d87fff5f5d06c6f1b82013684df.tar.bz2
microblaze: Do not select GENERIC_GPIO by default
commit 59516b07b4ffa7e607a5787674ea3c405f1b390c upstream. The microblaze architecture does not provide a native GPIO API implementation nor requires GPIOLIB, but still selects GENERIC_GPIO by default. As a result the following build error occurs, if GPIOLIB is not selected: include/asm-generic/gpio.h: In function 'gpio_get_value_cansleep': include/asm-generic/gpio.h:218: error: implicit declaration of function '__gpio_get_value' include/asm-generic/gpio.h: In function 'gpio_set_value_cansleep': include/asm-generic/gpio.h:224: error: implicit declaration of function '__gpio_set_value' This patch addresses the issue by not selecting GENERIC_GPIO by default. This causes the GPIO API to be stubbed out if no implementation is provided. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Tested-by: Michal Simek <monstr@monstr.eu> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'arch/microblaze')
-rw-r--r--arch/microblaze/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/Kconfig b/arch/microblaze/Kconfig
index e446bab..a93ed04 100644
--- a/arch/microblaze/Kconfig
+++ b/arch/microblaze/Kconfig
@@ -46,7 +46,7 @@ config GENERIC_CLOCKEVENTS
def_bool y
config GENERIC_GPIO
- def_bool y
+ bool
config GENERIC_CSUM
def_bool y