aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/se/7722
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-05-15 02:19:34 -0400
committerPaul Mundt <lethal@hera.kernel.org>2007-06-07 22:43:39 -0400
commit82f81f4784479df17a80caff4a7156da0a2f7dea (patch)
tree3679bd23f2c9daa24f9cf3e170a33f851ed45029 /arch/sh/boards/se/7722
parent25f8151bdcdd62c6b879e3669a562c0d329eee4a (diff)
sh: Kill off machvec aliases.
We now throw all of the machvecs in to .machvec.init and either select one on the command line, or copy out the first (and usually only) one to sh_mv. The rest are freed as usual. This gets rid of all of the silly sh_mv aliasing and makes the selection explicit rather than link-order dependent. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/se/7722')
-rw-r--r--arch/sh/boards/se/7722/setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/sh/boards/se/7722/setup.c b/arch/sh/boards/se/7722/setup.c
index 636ca6c987e0..6cca6cbc8069 100644
--- a/arch/sh/boards/se/7722/setup.c
+++ b/arch/sh/boards/se/7722/setup.c
@@ -137,7 +137,7 @@ static void __init se7722_setup(char **cmdline_p)
137/* 137/*
138 * The Machine Vector 138 * The Machine Vector
139 */ 139 */
140struct sh_machine_vector mv_se7722 __initmv = { 140static struct sh_machine_vector mv_se7722 __initmv = {
141 .mv_name = "Solution Engine 7722" , 141 .mv_name = "Solution Engine 7722" ,
142 .mv_setup = se7722_setup , 142 .mv_setup = se7722_setup ,
143 .mv_nr_irqs = 109 , 143 .mv_nr_irqs = 109 ,
@@ -145,4 +145,3 @@ struct sh_machine_vector mv_se7722 __initmv = {
145 .mv_irq_demux = se7722_irq_demux, 145 .mv_irq_demux = se7722_irq_demux,
146 146
147}; 147};
148ALIAS_MV(se7722)