diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2008-06-09 19:33:53 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-06-11 21:58:06 -0400 |
commit | f0000920696661cbbe2393d93a6f4e1b8325d531 (patch) | |
tree | b6b4a47b17e75555ef63fd63ee8658e7526616c0 /drivers/net/smc911x.h | |
parent | 573bf470e693f73a6ac437b17a64a10902ba54bf (diff) |
smc911x: remove unused 8-bit I/O operations
Remove unused SMC_inb() and SMC_outb() functions.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/smc911x.h')
-rw-r--r-- | drivers/net/smc911x.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/smc911x.h b/drivers/net/smc911x.h index 7defa63b9c74..f4965585ba16 100644 --- a/drivers/net/smc911x.h +++ b/drivers/net/smc911x.h | |||
@@ -50,10 +50,8 @@ | |||
50 | */ | 50 | */ |
51 | 51 | ||
52 | #if SMC_USE_16BIT | 52 | #if SMC_USE_16BIT |
53 | #define SMC_inb(a, r) readb((a) + (r)) | ||
54 | #define SMC_inw(a, r) readw((a) + (r)) | 53 | #define SMC_inw(a, r) readw((a) + (r)) |
55 | #define SMC_inl(a, r) ((SMC_inw(a, r) & 0xFFFF)+(SMC_inw(a+2, r)<<16)) | 54 | #define SMC_inl(a, r) ((SMC_inw(a, r) & 0xFFFF)+(SMC_inw(a+2, r)<<16)) |
56 | #define SMC_outb(v, a, r) writeb(v, (a) + (r)) | ||
57 | #define SMC_outw(v, a, r) writew(v, (a) + (r)) | 55 | #define SMC_outw(v, a, r) writew(v, (a) + (r)) |
58 | #define SMC_outl(v, a, r) \ | 56 | #define SMC_outl(v, a, r) \ |
59 | do{ \ | 57 | do{ \ |
@@ -64,10 +62,8 @@ | |||
64 | #define SMC_outsl(a, r, p, l) writesw((short*)((a) + (r)), p, l*2) | 62 | #define SMC_outsl(a, r, p, l) writesw((short*)((a) + (r)), p, l*2) |
65 | 63 | ||
66 | #elif SMC_USE_32BIT | 64 | #elif SMC_USE_32BIT |
67 | #define SMC_inb(a, r) readb((a) + (r)) | ||
68 | #define SMC_inw(a, r) readw((a) + (r)) | 65 | #define SMC_inw(a, r) readw((a) + (r)) |
69 | #define SMC_inl(a, r) readl((a) + (r)) | 66 | #define SMC_inl(a, r) readl((a) + (r)) |
70 | #define SMC_outb(v, a, r) writeb(v, (a) + (r)) | ||
71 | #define SMC_outl(v, a, r) writel(v, (a) + (r)) | 67 | #define SMC_outl(v, a, r) writel(v, (a) + (r)) |
72 | #define SMC_insl(a, r, p, l) readsl((int*)((a) + (r)), p, l) | 68 | #define SMC_insl(a, r, p, l) readsl((int*)((a) + (r)), p, l) |
73 | #define SMC_outsl(a, r, p, l) writesl((int*)((a) + (r)), p, l) | 69 | #define SMC_outsl(a, r, p, l) writesl((int*)((a) + (r)), p, l) |