summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-04-26 13:33:48 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-04-26 13:33:48 +0000
commitd15e136debaac5631f01d4655af4c28659a96d3c (patch)
treeaad2523670edfe29d28b52bc07df63fc7bbeedc6 /target/linux/brcm63xx
parent84dd37d9302e887ed21ee67c21919c134e9060a2 (diff)
downloadmaster-31e0f0ae-d15e136debaac5631f01d4655af4c28659a96d3c.tar.gz
master-31e0f0ae-d15e136debaac5631f01d4655af4c28659a96d3c.tar.bz2
master-31e0f0ae-d15e136debaac5631f01d4655af4c28659a96d3c.zip
fix spi chip select configuration
SVN-Revision: 21164
Diffstat (limited to 'target/linux/brcm63xx')
-rw-r--r--target/linux/brcm63xx/patches-2.6.32/240-spi.patch2
-rw-r--r--target/linux/brcm63xx/patches-2.6.33/240-spi.patch2
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.32/240-spi.patch b/target/linux/brcm63xx/patches-2.6.32/240-spi.patch
index 2c63623b87..319d21cd14 100644
--- a/target/linux/brcm63xx/patches-2.6.32/240-spi.patch
+++ b/target/linux/brcm63xx/patches-2.6.32/240-spi.patch
@@ -505,7 +505,7 @@
+ if (is_on == BITBANG_CS_INACTIVE)
+ val |= SPI_CMD_NOOP;
+ else if (is_on == BITBANG_CS_ACTIVE)
-+ val |= (1 << spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
++ val |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+
+ bcm_spi_writew(val, bs->regs, SPI_CMD);
+}
diff --git a/target/linux/brcm63xx/patches-2.6.33/240-spi.patch b/target/linux/brcm63xx/patches-2.6.33/240-spi.patch
index 8d7e7b2968..a886a02a0c 100644
--- a/target/linux/brcm63xx/patches-2.6.33/240-spi.patch
+++ b/target/linux/brcm63xx/patches-2.6.33/240-spi.patch
@@ -505,7 +505,7 @@
+ if (is_on == BITBANG_CS_INACTIVE)
+ val |= SPI_CMD_NOOP;
+ else if (is_on == BITBANG_CS_ACTIVE)
-+ val |= (1 << spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
++ val |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+
+ bcm_spi_writew(val, bs->regs, SPI_CMD);
+}