3.2-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Lars-Peter Clausen <l...@metafoo.de>

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 <l...@metafoo.de>
Tested-by: Michal Simek <mon...@monstr.eu>
Signed-off-by: Ben Hutchings <b...@decadent.org.uk>
---
 arch/microblaze/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/microblaze/Kconfig b/arch/microblaze/Kconfig
index ac22dc7..333b85e 100644
--- a/arch/microblaze/Kconfig
+++ b/arch/microblaze/Kconfig
@@ -57,7 +57,7 @@ config GENERIC_CLOCKEVENTS
        def_bool y
 
 config GENERIC_GPIO
-       def_bool y
+       bool
 
 config GENERIC_CSUM
        def_bool y


--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to