diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-05-15 02:38:30 -0400 |
---|---|---|
committer | Paul Mundt <lethal@hera.kernel.org> | 2007-06-07 22:43:40 -0400 |
commit | fd8f20e8e2f8f1d9201086bff444c8d35f0a6a45 (patch) | |
tree | 0823660fdd2ec53c6dede452d0802f54119bbde6 /arch/sh/kernel/setup.c | |
parent | 82f81f4784479df17a80caff4a7156da0a2f7dea (diff) |
sh: Rip out special unknown machvec.
This kills off the BareCPU board as a "special" machvec, rather,
we leave this as a default for when no other vector is available,
or when we want to use it in combination with other vectors for
testing with generic ops. As sh_mv is copied out anyways (or
overloaded when an alternate vector is explicitly selected), this
doesn't consume any additional memory.
The generic machvec can be forcibly selected with sh_mv=generic,
or by not having any other boards enabled.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/setup.c')
-rw-r--r-- | arch/sh/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 55ed653c7a67..6f1ea9b33374 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -47,7 +47,7 @@ struct sh_cpuinfo boot_cpu_data = { CPU_SH_NONE, 10000000, }; | |||
47 | * The machine vector. First entry in .machvec.init, or clobbered by | 47 | * The machine vector. First entry in .machvec.init, or clobbered by |
48 | * sh_mv= on the command line, prior to .machvec.init teardown. | 48 | * sh_mv= on the command line, prior to .machvec.init teardown. |
49 | */ | 49 | */ |
50 | struct sh_machine_vector sh_mv = { .mv_name = "Unknown", }; | 50 | struct sh_machine_vector sh_mv = { .mv_name = "generic", }; |
51 | 51 | ||
52 | #ifdef CONFIG_VT | 52 | #ifdef CONFIG_VT |
53 | struct screen_info screen_info; | 53 | struct screen_info screen_info; |