diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-08 08:52:57 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-08 08:52:57 +0000 |
commit | 14832d3c23c3eeb72db12022bfab1596f855fe5c (patch) | |
tree | 9b4bf5f1f5429c381444a7d449251df7c4b6e576 /target/linux/brcm63xx/files/include | |
parent | 31a146b56db135242035c3535383531b2218c630 (diff) | |
download | mtk-20170518-14832d3c23c3eeb72db12022bfab1596f855fe5c.zip mtk-20170518-14832d3c23c3eeb72db12022bfab1596f855fe5c.tar.gz mtk-20170518-14832d3c23c3eeb72db12022bfab1596f855fe5c.tar.bz2 |
some more fixes to the SPI controller driver
SVN-Revision: 15146
Diffstat (limited to 'target/linux/brcm63xx/files/include')
-rw-r--r-- | target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h index 5331c25..31e950e 100644 --- a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h +++ b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h @@ -93,15 +93,15 @@ /* * helpers for the SPI register sets */ -#define bcm_spi_readb(o) bcm_readb(bcm63xx_regset_address(RSET_SPI) + \ +#define bcm_spi_readb(b,o) bcm_readb((b) + \ bcm63xx_spireg(o)) -#define bcm_spi_readw(o) bcm_readw(bcm63xx_regset_address(RSET_SPI) + \ +#define bcm_spi_readw(b,o) bcm_readw((b) + \ bcm63xx_spireg(o)) -#define bcm_spi_writeb(v,o) bcm_writeb((v), \ - bcm63xx_regset_address(RSET_SPI) + \ +#define bcm_spi_writeb(v,b,o) bcm_writeb((v), \ + (b) + \ bcm63xx_spireg(o)) -#define bcm_spi_writew(v,o) bcm_writew((v), \ - bcm63xx_regset_address(RSET_SPI) + \ +#define bcm_spi_writew(v,b,o) bcm_writew((v), \ + (b) + \ bcm63xx_spireg(o)) #endif /* ! BCM63XX_IO_H_ */ |