Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 101462
b: refs/heads/master
c: 7a1fdf1
h: refs/heads/master
v: v3
  • Loading branch information
Yoichi Yuasa authored and Ralf Baechle committed Jul 15, 2008
1 parent 97cb013 commit ead2287
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 27 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b03d7b18fd783f39e31560d568e7db954f3080af
refs/heads/master: 7a1fdf1946b641f7c2866b3386414657eeb88084
34 changes: 8 additions & 26 deletions trunk/arch/mips/txx9/generic/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,6 @@ extern struct txx9_board_vec rbtx4927_vec;
extern struct txx9_board_vec rbtx4937_vec;
extern struct txx9_board_vec rbtx4938_vec;

/* board definitions */
static struct txx9_board_vec *board_vecs[] __initdata = {
#ifdef CONFIG_TOSHIBA_JMR3927
&jmr3927_vec,
#endif
#ifdef CONFIG_TOSHIBA_RBTX4927
&rbtx4927_vec,
&rbtx4937_vec,
#endif
#ifdef CONFIG_TOSHIBA_RBTX4938
&rbtx4938_vec,
#endif
};
struct txx9_board_vec *txx9_board_vec __initdata;
static char txx9_system_type[32];

Expand All @@ -134,31 +121,26 @@ void __init prom_init_cmdline(void)

void __init prom_init(void)
{
int i;

#ifdef CONFIG_CPU_TX39XX
mips_machtype = MACH_TOSHIBA_JMR3927;
txx9_board_vec = &jmr3927_vec;
#endif
#ifdef CONFIG_CPU_TX49XX
switch (TX4938_REV_PCODE()) {
case 0x4927:
mips_machtype = MACH_TOSHIBA_RBTX4927;
txx9_board_vec = &rbtx4927_vec;
break;
case 0x4937:
mips_machtype = MACH_TOSHIBA_RBTX4937;
txx9_board_vec = &rbtx4937_vec;
break;
case 0x4938:
mips_machtype = MACH_TOSHIBA_RBTX4938;
txx9_board_vec = &rbtx4938_vec;
break;
}
#endif
for (i = 0; i < ARRAY_SIZE(board_vecs); i++) {
if (board_vecs[i]->type == mips_machtype) {
txx9_board_vec = board_vecs[i];
strcpy(txx9_system_type, txx9_board_vec->system);
return txx9_board_vec->prom_init();
}
}

strcpy(txx9_system_type, txx9_board_vec->system);

return txx9_board_vec->prom_init();
}

void __init prom_free_prom_memory(void)
Expand Down

0 comments on commit ead2287

Please sign in to comment.