Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b0dad83 authored by Joe Perches's avatar Joe Perches Committed by Michael Grzeschik
Browse files

arcnet: Remove unused arcnet_<I/O>w macros



The word length macros are unused.  Remove them.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMichael Grzeschik <m.grzeschik@pengutronix.de>
parent 8e0f295e
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -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)				\