* [PATCH net-next] net: arcnet: remove code depending on nonexistent config option
@ 2026-02-09 2:54 Ethan Nelson-Moore
0 siblings, 0 replies; only message in thread
From: Ethan Nelson-Moore @ 2026-02-09 2:54 UTC (permalink / raw)
To: netdev
Cc: Ethan Nelson-Moore, Michael Grzeschik, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
The CONFIG_SA1100_CT6001 option has never existed in the kernel. Remove
code in arcdevice.h referring to it. This allows the
arcnet_(in|out)(s|)b macros to be simplified by removing the BUS_ALIGN
macro.
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
---
drivers/net/arcnet/arcdevice.h | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/drivers/net/arcnet/arcdevice.h b/drivers/net/arcnet/arcdevice.h
index bee60b377d7c..6a5af0943567 100644
--- a/drivers/net/arcnet/arcdevice.h
+++ b/drivers/net/arcnet/arcdevice.h
@@ -374,24 +374,17 @@ static inline void arcnet_set_addr(struct net_device *dev, u8 addr)
/* I/O equivalents */
-#ifdef CONFIG_SA1100_CT6001
-#define BUS_ALIGN 2 /* 8 bit device on a 16 bit bus - needs padding */
-#else
-#define BUS_ALIGN 1
-#endif
-
/* addr and offset allow register like names to define the actual IO address.
- * A configuration option multiplies the offset for alignment.
*/
#define arcnet_inb(addr, offset) \
- inb((addr) + BUS_ALIGN * (offset))
+ inb((addr) + (offset))
#define arcnet_outb(value, addr, offset) \
- outb(value, (addr) + BUS_ALIGN * (offset))
+ outb(value, (addr) + (offset))
#define arcnet_insb(addr, offset, buffer, count) \
- insb((addr) + BUS_ALIGN * (offset), buffer, count)
+ insb((addr) + (offset), buffer, count)
#define arcnet_outsb(addr, offset, buffer, count) \
- outsb((addr) + BUS_ALIGN * (offset), buffer, count)
+ outsb((addr) + (offset), buffer, count)
#define arcnet_readb(addr, offset) \
readb((addr) + (offset))
--
2.43.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-02-09 2:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-09 2:54 [PATCH net-next] net: arcnet: remove code depending on nonexistent config option Ethan Nelson-Moore
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox