Commit 3eaa5e7d authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Linus Torvalds

[PATCH] cs89x0: make {read,write}reg use {read,write}word

Make readreg/writereg use 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 0d5affcf
...@@ -351,17 +351,17 @@ writeword(unsigned long base_addr, int portno, int value) ...@@ -351,17 +351,17 @@ writeword(unsigned long base_addr, int portno, int value)
} }
static int static int
readreg(struct net_device *dev, int portno) readreg(struct net_device *dev, int regno)
{ {
outw(portno, dev->base_addr + ADD_PORT); writeword(dev->base_addr, ADD_PORT, regno);
return inw(dev->base_addr + DATA_PORT); return readword(dev->base_addr, DATA_PORT);
} }
static void static void
writereg(struct net_device *dev, int portno, int value) writereg(struct net_device *dev, int regno, int value)
{ {
outw(portno, dev->base_addr + ADD_PORT); writeword(dev->base_addr, ADD_PORT, regno);
outw(value, dev->base_addr + DATA_PORT); writeword(dev->base_addr, DATA_PORT, value);
} }
static int __init static int __init
......
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