[PATCH 395] Sun-3 missing sbus_readl()

From: Geert Uytterhoeven
Date: Fri Feb 20 2004 - 08:53:14 EST


Sun-3 sbus: Add missing definition of sbus_readl() (from Sam Creasey)

--- linux-2.6.3/include/asm-m68k/sbus.h 2003-11-30 20:07:03.000000000 +0100
+++ linux-m68k-2.6.3/include/asm-m68k/sbus.h 2004-01-15 13:59:33.000000000 +0100
@@ -36,8 +36,15 @@

}

+extern inline unsigned long _sbus_readl(unsigned long addr)
+{
+ return *(volatile unsigned long *)addr;
+}
+
+
#define sbus_readb(a) _sbus_readb((unsigned long)a)
#define sbus_writeb(v, a) _sbus_writeb(v, (unsigned long)a)
+#define sbus_readl(a) _sbus_readl((unsigned long)a)
#define sbus_writel(v, a) _sbus_writel(v, (unsigned long)a)

#endif

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/