aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/txx9/generic/setup.c
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2008-09-01 09:22:40 -0400
committerRalf Baechle <ralf@linux-mips.org>2008-10-11 11:18:49 -0400
commitb27311e1cace4e296ace786c886d22f7a8ec78d6 (patch)
tree94d962590160c480f7ef4d0cbb8d43406d91ab1d /arch/mips/txx9/generic/setup.c
parent0dcdbe6add26719e956299eb519542f7d2f7d0a8 (diff)
MIPS: TXx9: Add RBTX4939 board support
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org> create mode 100644 arch/mips/txx9/rbtx4939/Makefile create mode 100644 arch/mips/txx9/rbtx4939/irq.c create mode 100644 arch/mips/txx9/rbtx4939/prom.c create mode 100644 arch/mips/txx9/rbtx4939/setup.c create mode 100644 include/asm-mips/txx9/rbtx4939.h
Diffstat (limited to 'arch/mips/txx9/generic/setup.c')
-rw-r--r--arch/mips/txx9/generic/setup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c
index 1ea06553a1e1..7a05c34c1dec 100644
--- a/arch/mips/txx9/generic/setup.c
+++ b/arch/mips/txx9/generic/setup.c
@@ -372,6 +372,11 @@ static void __init select_board(void)
372 txx9_board_vec = &rbtx4938_vec; 372 txx9_board_vec = &rbtx4938_vec;
373 break; 373 break;
374#endif 374#endif
375#ifdef CONFIG_TOSHIBA_RBTX4939
376 case 0x4939:
377 txx9_board_vec = &rbtx4939_vec;
378 break;
379#endif
375 } 380 }
376#endif 381#endif
377} 382}