From 237363dcfe373776160be2068f02953a9ffb6758 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20B=C3=BCsch?= Date: Sun, 15 Feb 2009 15:50:26 +0000 Subject: [PATCH] Fix spi-gpio MISO handling. SVN-Revision: 14523 --- .../920-03-spi-gpio-fix-miso-bit.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch diff --git a/target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch b/target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch new file mode 100644 index 0000000000..f4dd67efee --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch @@ -0,0 +1,22 @@ +SPI-GPIO bitbang: + +gpio_get_value() returns 0 or nonzero, but getmiso() expects 0 or 1. +Sanitize the value to a 0/1 boolean. + +--mb + + + +Index: linux-2.6.28.5/drivers/spi/spi_gpio.c +=================================================================== +--- linux-2.6.28.5.orig/drivers/spi/spi_gpio.c 2009-02-15 16:21:11.000000000 +0100 ++++ linux-2.6.28.5/drivers/spi/spi_gpio.c 2009-02-15 16:21:47.000000000 +0100 +@@ -114,7 +114,7 @@ static inline void setmosi(const struct + + static inline int getmiso(const struct spi_device *spi) + { +- return gpio_get_value(SPI_MISO_GPIO); ++ return !!gpio_get_value(SPI_MISO_GPIO); + } + + #undef pdata -- 2.30.2