Commit fc8c7d79 authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Linus Torvalds

[PATCH] cs89x0: convert {inw,outw} calls to {read,write}word

Switch all occurences of inw/outw in the driver over to readword/writeword.
Signed-off-by: default avatarLennert Buytenhek <buytenh@wantstofly.org>
Cc: dmitry pervushin <dpervushin@ru.mvista.com>
Cc: <dsaxena@plexity.net>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 974dffc2
...@@ -491,8 +491,8 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular) ...@@ -491,8 +491,8 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
#ifdef CONFIG_SH_HICOSH4 #ifdef CONFIG_SH_HICOSH4
/* truely reset the chip */ /* truely reset the chip */
outw(0x0114, ioaddr + ADD_PORT); writeword(ioaddr, ADD_PORT, 0x0114);
outw(0x0040, ioaddr + DATA_PORT); writeword(ioaddr, DATA_PORT, 0x0040);
#endif #endif
/* if they give us an odd I/O address, then do ONE write to /* if they give us an odd I/O address, then do ONE write to
...@@ -503,24 +503,24 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular) ...@@ -503,24 +503,24 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
if (net_debug > 1) if (net_debug > 1)
printk(KERN_INFO "%s: odd ioaddr 0x%x\n", dev->name, ioaddr); printk(KERN_INFO "%s: odd ioaddr 0x%x\n", dev->name, ioaddr);
if ((ioaddr & 2) != 2) if ((ioaddr & 2) != 2)
if ((inw((ioaddr & ~3)+ ADD_PORT) & ADD_MASK) != ADD_SIG) { if ((readword(ioaddr & ~3, ADD_PORT) & ADD_MASK) != ADD_SIG) {
printk(KERN_ERR "%s: bad signature 0x%x\n", printk(KERN_ERR "%s: bad signature 0x%x\n",
dev->name, inw((ioaddr & ~3)+ ADD_PORT)); dev->name, readword(ioaddr & ~3, ADD_PORT));
retval = -ENODEV; retval = -ENODEV;
goto out2; goto out2;
} }
} }
printk(KERN_DEBUG "PP_addr at %x: 0x%x\n", printk(KERN_DEBUG "PP_addr at %x[%x]: 0x%x\n",
ioaddr + ADD_PORT, inw(ioaddr + ADD_PORT)); ioaddr, ADD_PORT, readword(ioaddr, ADD_PORT));
ioaddr &= ~3; ioaddr &= ~3;
outw(PP_ChipID, ioaddr + ADD_PORT); writeword(ioaddr, ADD_PORT, PP_ChipID);
tmp = inw(ioaddr + DATA_PORT); tmp = readword(ioaddr, DATA_PORT);
if (tmp != CHIP_EISA_ID_SIG) { if (tmp != CHIP_EISA_ID_SIG) {
printk(KERN_DEBUG "%s: incorrect signature at %x: 0x%x!=" printk(KERN_DEBUG "%s: incorrect signature at %x[%x]: 0x%x!="
CHIP_EISA_ID_SIG_STR "\n", CHIP_EISA_ID_SIG_STR "\n",
dev->name, ioaddr + DATA_PORT, tmp); dev->name, ioaddr, DATA_PORT, tmp);
retval = -ENODEV; retval = -ENODEV;
goto out2; goto out2;
} }
...@@ -790,7 +790,7 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular) ...@@ -790,7 +790,7 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
goto out3; goto out3;
return 0; return 0;
out3: out3:
outw(PP_ChipID, dev->base_addr + ADD_PORT); writeword(dev->base_addr, ADD_PORT, PP_ChipID);
out2: out2:
release_region(ioaddr & ~3, NETCARD_IO_EXTENT); release_region(ioaddr & ~3, NETCARD_IO_EXTENT);
out1: out1:
...@@ -970,11 +970,11 @@ void __init reset_chip(struct net_device *dev) ...@@ -970,11 +970,11 @@ void __init reset_chip(struct net_device *dev)
#ifndef CONFIG_ARCH_IXDP2X01 #ifndef CONFIG_ARCH_IXDP2X01
if (lp->chip_type != CS8900) { if (lp->chip_type != CS8900) {
/* Hardware problem requires PNP registers to be reconfigured after a reset */ /* Hardware problem requires PNP registers to be reconfigured after a reset */
outw(PP_CS8920_ISAINT, ioaddr + ADD_PORT); writeword(ioaddr, ADD_PORT, PP_CS8920_ISAINT);
outb(dev->irq, ioaddr + DATA_PORT); outb(dev->irq, ioaddr + DATA_PORT);
outb(0, ioaddr + DATA_PORT + 1); outb(0, ioaddr + DATA_PORT + 1);
outw(PP_CS8920_ISAMemB, ioaddr + ADD_PORT); writeword(ioaddr, ADD_PORT, PP_CS8920_ISAMemB);
outb((dev->mem_start >> 16) & 0xff, ioaddr + DATA_PORT); outb((dev->mem_start >> 16) & 0xff, ioaddr + DATA_PORT);
outb((dev->mem_start >> 8) & 0xff, ioaddr + DATA_PORT + 1); outb((dev->mem_start >> 8) & 0xff, ioaddr + DATA_PORT + 1);
} }
...@@ -1606,8 +1606,8 @@ net_rx(struct net_device *dev) ...@@ -1606,8 +1606,8 @@ net_rx(struct net_device *dev)
int status, length; int status, length;
int ioaddr = dev->base_addr; int ioaddr = dev->base_addr;
status = inw(ioaddr + RX_FRAME_PORT); status = readword(ioaddr, RX_FRAME_PORT);
length = inw(ioaddr + RX_FRAME_PORT); length = readword(ioaddr, RX_FRAME_PORT);
if ((status & RX_OK) == 0) { if ((status & RX_OK) == 0) {
count_rx_errors(status, lp); count_rx_errors(status, lp);
...@@ -1628,7 +1628,7 @@ net_rx(struct net_device *dev) ...@@ -1628,7 +1628,7 @@ net_rx(struct net_device *dev)
insw(ioaddr + RX_FRAME_PORT, skb_put(skb, length), length >> 1); insw(ioaddr + RX_FRAME_PORT, skb_put(skb, length), length >> 1);
if (length & 1) if (length & 1)
skb->data[length-1] = inw(ioaddr + RX_FRAME_PORT); skb->data[length-1] = readword(ioaddr, RX_FRAME_PORT);
if (net_debug > 3) { if (net_debug > 3) {
printk( "%s: received %d byte packet of type %x\n", printk( "%s: received %d byte packet of type %x\n",
...@@ -1901,7 +1901,7 @@ void ...@@ -1901,7 +1901,7 @@ void
cleanup_module(void) cleanup_module(void)
{ {
unregister_netdev(dev_cs89x0); unregister_netdev(dev_cs89x0);
outw(PP_ChipID, dev_cs89x0->base_addr + ADD_PORT); writeword(dev_cs89x0->base_addr, ADD_PORT, PP_ChipID);
release_region(dev_cs89x0->base_addr, NETCARD_IO_EXTENT); release_region(dev_cs89x0->base_addr, NETCARD_IO_EXTENT);
free_netdev(dev_cs89x0); free_netdev(dev_cs89x0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment