From: Joe Perches Date: Tue, 5 May 2015 17:06:14 +0000 (-0700) Subject: arcnet: Remove unused arcnet_w macros X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=4b0dad83c53b4a6a29be47dc3acc8623be36e7dd;p=deliverable%2Flinux.git arcnet: Remove unused arcnet_w macros The word length macros are unused. Remove them. Signed-off-by: Joe Perches Signed-off-by: Michael Grzeschik --- diff --git a/drivers/net/arcnet/arcdevice.h b/drivers/net/arcnet/arcdevice.h index 257748594cdb..4c1c44c85b08 100644 --- a/drivers/net/arcnet/arcdevice.h +++ b/drivers/net/arcnet/arcdevice.h @@ -358,16 +358,6 @@ void arcnet_timeout(struct net_device *dev); #define arcnet_outsb(addr, offset, buffer, count) \ outsb((addr) + BUS_ALIGN * (offset), buffer, count) -#define arcnet_inw(addr, offset) \ - inw((addr) + BUS_ALIGN * (offset)) -#define arcnet_outw(value, addr, offset) \ - outw(value, (addr) + BUS_ALIGN * (offset)) - -#define arcnet_insw(addr, offset, buffer, count) \ - insw((addr) + BUS_ALIGN * (offset), buffer, count) -#define arcnet_outsw(addr, offset, buffer, count) \ - outsw((addr) + BUS_ALIGN * (offset), buffer, count) - #define arcnet_readb(addr, offset) \ readb((addr) + (offset)) #define arcnet_writeb(value, addr, offset) \