switch ixp4xx and ubicom32 to 2.6.30, get rid of 2.6.28 files
[openwrt-10.03/.git] / 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
deleted file mode 100644 (file)
index acc7bed..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-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
-
-
-
---- a/drivers/spi/spi_gpio.c
-+++ b/drivers/spi/spi_gpio.c
-@@ -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