microblaze: Do not select GENERIC_GPIO by default
authorLars-Peter Clausen <lars@metafoo.de>
Mon, 9 Apr 2012 13:05:44 +0000 (15:05 +0200)
committerMichal Simek <monstr@monstr.eu>
Fri, 25 May 2012 04:34:32 +0000 (06:34 +0200)
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>
Cc: stable@vger.kernel.org
Tested-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/Kconfig

index ac22dc7f4cab0ffa882182103fe6c0ccf1ad6963..333b85e80c0711636e4fc37697f81efb8ae3fcfd 100644 (file)
@@ -57,7 +57,7 @@ config GENERIC_CLOCKEVENTS
        def_bool y
 
 config GENERIC_GPIO
-       def_bool y
+       bool
 
 config GENERIC_CSUM
        def_bool y