summary refs log tree commit diff
path: root/drivers/net/smc91x.h
diff options
context:
space:
mode:
authorMagnus Damm <magnus.damm@gmail.com>2008-02-22 19:55:24 +0900
committerJeff Garzik <jeff@garzik.org>2008-03-17 07:49:27 -0400
commit8a214c125a06e974b6fba7c38fb06297ab449d3a (patch)
tree3923a959fc92294c25e7f61176bed4cc55955f63 /drivers/net/smc91x.h
parent3e94794355724f77dc6cbb5ad956f7c72d8313a4 (diff)
downloadlinux-8a214c125a06e974b6fba7c38fb06297ab449d3a.tar.gz
smc91x: add insw/outsw to default config V2
This patch makes sure SMC_insw()/SMC_outsw() are defined for the
default configuration. Without this change BUG()s will be triggered
when using 16-bit only platform data and the default configuration.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/smc91x.h')
-rw-r--r--drivers/net/smc91x.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h
index e044b4de1397..c4f2f469cd63 100644
--- a/drivers/net/smc91x.h
+++ b/drivers/net/smc91x.h
@@ -476,6 +476,8 @@ static inline void LPD7_SMC_outsw (unsigned char* a, int r,
 #define SMC_outb(v, a, r)	writeb(v, (a) + (r))
 #define SMC_outw(v, a, r)	writew(v, (a) + (r))
 #define SMC_outl(v, a, r)	writel(v, (a) + (r))
+#define SMC_insw(a, r, p, l)	readsw((a) + (r), p, l)
+#define SMC_outsw(a, r, p, l)	writesw((a) + (r), p, l)
 #define SMC_insl(a, r, p, l)	readsl((a) + (r), p, l)
 #define SMC_outsl(a, r, p, l)	writesl((a) + (r), p, l)