aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2009-12-27 21:28:02 +0000
committerImre Kaloz <kaloz@openwrt.org>2009-12-27 21:28:02 +0000
commit2434746dd4bc0c8c00d5a94e44f05604e2dca304 (patch)
tree180b2c74131eb4d4bd7c855e1de0ca28bda8127c /target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch
parent4060780e57e972944be3a83db84bc37948949698 (diff)
downloadupstream-2434746dd4bc0c8c00d5a94e44f05604e2dca304.tar.gz
upstream-2434746dd4bc0c8c00d5a94e44f05604e2dca304.tar.bz2
upstream-2434746dd4bc0c8c00d5a94e44f05604e2dca304.zip
switch ixp4xx and ubicom32 to 2.6.30, get rid of 2.6.28 files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18952 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch20
1 files changed, 0 insertions, 20 deletions
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
index acc7bed920..0000000000
--- a/target/linux/generic-2.6/patches-2.6.28/920-03-spi-gpio-fix-miso-bit.patch
+++ /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