diff options
author | Luotao Fu <lfu@pengutronix.de> | 2008-12-03 22:23:18 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-03 22:23:18 -0800 |
commit | 48502180e4b47fb2b1e7834fe0f16f4e553a053d (patch) | |
tree | cf16bd9da31f54d0dc17bfdbd086272b85b9f2ec /drivers/net/smc91x.h | |
parent | 999890b21a8eff7559a140fcbd2cd4b34e685c76 (diff) | |
download | blackbird-op-linux-48502180e4b47fb2b1e7834fe0f16f4e553a053d.tar.gz blackbird-op-linux-48502180e4b47fb2b1e7834fe0f16f4e553a053d.zip |
smc91x: remove isa stuff from smc91x driver
ISA support in smc91x is incomplete. I doubt there're any smc91x isa card.
This driver is greatly used on arm pxa platforms. Hence we remove the
isa stuff from smc91x driver.
Signed-off-by: Luotao Fu <lfu@pengutronix.de>
Acked-by: Steve Glendinning <steve.glendinning@smsc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/smc91x.h')
-rw-r--r-- | drivers/net/smc91x.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h index f6d637968eda..3e7c6a3cbc65 100644 --- a/drivers/net/smc91x.h +++ b/drivers/net/smc91x.h @@ -265,19 +265,6 @@ SMC_outw(u16 val, void __iomem *ioaddr, int reg) #define SMC_IRQ_FLAGS (0) -#elif defined(CONFIG_ISA) - -#define SMC_CAN_USE_8BIT 1 -#define SMC_CAN_USE_16BIT 1 -#define SMC_CAN_USE_32BIT 0 - -#define SMC_inb(a, r) inb((a) + (r)) -#define SMC_inw(a, r) inw((a) + (r)) -#define SMC_outb(v, a, r) outb(v, (a) + (r)) -#define SMC_outw(v, a, r) outw(v, (a) + (r)) -#define SMC_insw(a, r, p, l) insw((a) + (r), p, l) -#define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l) - #elif defined(CONFIG_M32R) #define SMC_CAN_USE_8BIT 0 |