summaryrefslogtreecommitdiffstats
path: root/arch/mips/txx9/generic
diff options
context:
space:
mode:
authorAtsushi Nemoto2008-07-13 16:37:56 +0200
committerRalf Baechle2008-07-15 19:44:38 +0200
commit4c642f3f5e9f3f1a2fcce2c3fa1a94bf80142202 (patch)
treec4ec77d34ec82e5144b728ef9d4e368a2c833fec /arch/mips/txx9/generic
parent[MIPS] remove machtype for group Toshiba (diff)
downloadkernel-qcow2-linux-4c642f3f5e9f3f1a2fcce2c3fa1a94bf80142202.tar.gz
kernel-qcow2-linux-4c642f3f5e9f3f1a2fcce2c3fa1a94bf80142202.tar.xz
kernel-qcow2-linux-4c642f3f5e9f3f1a2fcce2c3fa1a94bf80142202.zip
[MIPS] TXx9: rename asm-mips/mach-jmr3927 to asm-mips/mach-tx39xx
Rename mach-jmr3927 directory to more proper name to make adding other platforms easier. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/txx9/generic')
-rw-r--r--arch/mips/txx9/generic/setup.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c
index 517828e1ec92..452cb9ea12c0 100644
--- a/arch/mips/txx9/generic/setup.c
+++ b/arch/mips/txx9/generic/setup.c
@@ -200,3 +200,13 @@ asmlinkage void plat_irq_dispatch(void)
else
spurious_interrupt();
}
+
+/* see include/asm-mips/mach-tx39xx/mangle-port.h, for example. */
+#ifdef NEEDS_TXX9_SWIZZLE_ADDR_B
+static unsigned long __swizzle_addr_none(unsigned long port)
+{
+ return port;
+}
+unsigned long (*__swizzle_addr_b)(unsigned long port) = __swizzle_addr_none;
+EXPORT_SYMBOL(__swizzle_addr_b);
+#endif