]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
net: dm9000: use io{read,write}*_rep accessors
authorMatthew Leach <matthew@mattleach.net>
Mon, 10 Dec 2012 09:12:37 +0000 (09:12 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 10 Dec 2012 20:46:27 +0000 (15:46 -0500)
The {read,write}s{b,w,l} operations are not defined by all
architectures and are being removed from the asm-generic/io.h
interface.

This patch replaces the usage of these string functions in the default
DM9000 accessors with io{read,write}{8,16,32}_rep calls instead. This
is required as the dm9000 driver is in use by the blackfin
architecture which uses the asm-generic io accessors.

Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Ben Herrenschmidt <benh@kernel.crashing.org>
Cc: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: Matthew Leach <matthew@mattleach.net>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/davicom/dm9000.c

index c716e95a61fee8ef3e44a1f085e7a4f5a8ba054c..c73472c369cd6e7334e42baf3d61f15952ece55a 100644 (file)
@@ -193,35 +193,35 @@ iow(board_info_t * db, int reg, int value)
 
 static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
 {
-       writesb(reg, data, count);
+       iowrite8_rep(reg, data, count);
 }
 
 static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
 {
-       writesw(reg, data, (count+1) >> 1);
+       iowrite16_rep(reg, data, (count+1) >> 1);
 }
 
 static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
 {
-       writesl(reg, data, (count+3) >> 2);
+       iowrite32_rep(reg, data, (count+3) >> 2);
 }
 
 /* input block from chip to memory */
 
 static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
 {
-       readsb(reg, data, count);
+       ioread8_rep(reg, data, count);
 }
 
 
 static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
 {
-       readsw(reg, data, (count+1) >> 1);
+       ioread16_rep(reg, data, (count+1) >> 1);
 }
 
 static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
 {
-       readsl(reg, data, (count+3) >> 2);
+       ioread32_rep(reg, data, (count+3) >> 2);
 }
 
 /* dump block from chip to null */