* [patch 2.6.18-rc3] build fixes: smc91x
@ 2006-07-31 14:32 David Brownell
0 siblings, 0 replies; only message in thread
From: David Brownell @ 2006-07-31 14:32 UTC (permalink / raw)
To: Linux Kernel list; +Cc: Nicolas Pitre
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Another driver that wouldn't build in mainline kernels for OMAP.
[-- Attachment #2: smc91x.patch --]
[-- Type: text/x-diff, Size: 906 bytes --]
Unclear how these bugs arrived, presumably from incorrect cleanup of
the 16-bit-only paths, but smc91x wouldn't build for OMAP.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
--- a/drivers/net/smc91x.h
+++ b/drivers/net/smc91x.h
@@ -189,16 +189,10 @@ SMC_outw(u16 val, void __iomem *ioaddr,
#define SMC_IO_SHIFT 0
#define SMC_NOWAIT 1
-#define SMC_inb(a, r) readb((a) + (r))
-#define SMC_outb(v, a, r) writeb(v, (a) + (r))
#define SMC_inw(a, r) readw((a) + (r))
#define SMC_outw(v, a, r) writew(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_inl(a, r) readl((a) + (r))
-#define SMC_outl(v, a, r) writel(v, (a) + (r))
-#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
-#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
#include <asm/mach-types.h>
#include <asm/arch/cpu.h>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-31 14:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-31 14:32 [patch 2.6.18-rc3] build fixes: smc91x David Brownell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome