aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-03-10 15:28:29 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-03-10 15:28:29 +0000
commit6ee24eaca75534ebb98802820e6ef170dd72d0c5 (patch)
tree22e8137a0f7e18f582034987508c9f8034173055 /target
parenteb0eee587f7e435af53f8f9783de8be638fd2367 (diff)
downloadmaster-187ad058-6ee24eaca75534ebb98802820e6ef170dd72d0c5.tar.gz
master-187ad058-6ee24eaca75534ebb98802820e6ef170dd72d0c5.tar.bz2
master-187ad058-6ee24eaca75534ebb98802820e6ef170dd72d0c5.zip
[brcm63xx] make SPI work in full-duplex mode by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c
index 449b1d5adf..d12ae99ce6 100644
--- a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c
+++ b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c
@@ -36,7 +36,7 @@
#include <bcm63xx_dev_spi.h>
#define PFX KBUILD_MODNAME
-#define DRV_VER "0.1.0"
+#define DRV_VER "0.1.1"
struct bcm63xx_spi {
/* bitbang has to be first */
@@ -207,7 +207,7 @@ static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
/* Fill in the Message control register */
msg_ctl = bcm_spi_readb(SPI_MSG_CTL);
msg_ctl |= (t->len << SPI_BYTE_CNT_SHIFT);
- msg_ctl |= (SPI_HD_R << SPI_MSG_TYPE_SHIFT);
+ msg_ctl |= (SPI_FD_RW << SPI_MSG_TYPE_SHIFT);
bcm_spi_writeb(msg_ctl, SPI_MSG_CTL);
/* Issue the transfer */