aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2006-11-07 09:23:57 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-02-06 16:53:22 +0000
commitb86b30f81c7601d9a410d2ce0c64d9ba50d673ae (patch)
tree640859d2c7ddc86b5591af5bee9e972e47039944
parent[MIPS] Jaguar: Fix MAC address detection after platform_device conversion. (diff)
downloadlinux-dev-b86b30f81c7601d9a410d2ce0c64d9ba50d673ae.tar.xz
linux-dev-b86b30f81c7601d9a410d2ce0c64d9ba50d673ae.zip
[MIPS] Jaguar ATX: Fix large number of warnings.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/momentum/jaguar_atx/jaguar_atx_fpga.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/mips/momentum/jaguar_atx/jaguar_atx_fpga.h b/arch/mips/momentum/jaguar_atx/jaguar_atx_fpga.h
index 6978654c712b..022f6974b76e 100644
--- a/arch/mips/momentum/jaguar_atx/jaguar_atx_fpga.h
+++ b/arch/mips/momentum/jaguar_atx/jaguar_atx_fpga.h
@@ -46,7 +46,9 @@
extern unsigned long ja_fpga_base;
-#define JAGUAR_FPGA_WRITE(x,y) writeb(x, ja_fpga_base + JAGUAR_ATX_REG_##y)
-#define JAGUAR_FPGA_READ(x) readb(ja_fpga_base + JAGUAR_ATX_REG_##x)
+#define __FPGA_REG_TO_ADDR(reg) \
+ ((void *) ja_fpga_base + JAGUAR_ATX_REG_##reg)
+#define JAGUAR_FPGA_WRITE(x, reg) writeb(x, __FPGA_REG_TO_ADDR(reg))
+#define JAGUAR_FPGA_READ(reg) readb(__FPGA_REG_TO_ADDR(reg))
#endif