diff options
Diffstat (limited to 'arch/sh/boards/renesas/r7780rp')
-rw-r--r-- | arch/sh/boards/renesas/r7780rp/Kconfig | 6 | ||||
-rw-r--r-- | arch/sh/boards/renesas/r7780rp/setup.c | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/arch/sh/boards/renesas/r7780rp/Kconfig b/arch/sh/boards/renesas/r7780rp/Kconfig index 9fb11641fe13..fc8f28e04ba3 100644 --- a/arch/sh/boards/renesas/r7780rp/Kconfig +++ b/arch/sh/boards/renesas/r7780rp/Kconfig | |||
@@ -6,18 +6,18 @@ choice | |||
6 | 6 | ||
7 | config SH_R7780RP | 7 | config SH_R7780RP |
8 | bool "R7780RP-1 board support" | 8 | bool "R7780RP-1 board support" |
9 | select CPU_SUBTYPE_SH7780 | 9 | depends on CPU_SUBTYPE_SH7780 |
10 | 10 | ||
11 | config SH_R7780MP | 11 | config SH_R7780MP |
12 | bool "R7780MP board support" | 12 | bool "R7780MP board support" |
13 | select CPU_SUBTYPE_SH7780 | 13 | depends on CPU_SUBTYPE_SH7780 |
14 | help | 14 | help |
15 | Selecting this option will enable support for the mass-production | 15 | Selecting this option will enable support for the mass-production |
16 | version of the R7780RP. If in doubt, say Y. | 16 | version of the R7780RP. If in doubt, say Y. |
17 | 17 | ||
18 | config SH_R7785RP | 18 | config SH_R7785RP |
19 | bool "R7785RP board support" | 19 | bool "R7785RP board support" |
20 | select CPU_SUBTYPE_SH7785 | 20 | depends on CPU_SUBTYPE_SH7785 |
21 | 21 | ||
22 | endchoice | 22 | endchoice |
23 | 23 | ||
diff --git a/arch/sh/boards/renesas/r7780rp/setup.c b/arch/sh/boards/renesas/r7780rp/setup.c index 0727ef92f2b3..5afb864a1ec5 100644 --- a/arch/sh/boards/renesas/r7780rp/setup.c +++ b/arch/sh/boards/renesas/r7780rp/setup.c | |||
@@ -166,10 +166,9 @@ static void __init highlander_setup(char **cmdline_p) | |||
166 | /* | 166 | /* |
167 | * The Machine Vector | 167 | * The Machine Vector |
168 | */ | 168 | */ |
169 | struct sh_machine_vector mv_highlander __initmv = { | 169 | static struct sh_machine_vector mv_highlander __initmv = { |
170 | .mv_name = "Highlander", | 170 | .mv_name = "Highlander", |
171 | .mv_nr_irqs = 109, | 171 | .mv_nr_irqs = 109, |
172 | .mv_setup = highlander_setup, | 172 | .mv_setup = highlander_setup, |
173 | .mv_init_irq = highlander_init_irq, | 173 | .mv_init_irq = highlander_init_irq, |
174 | }; | 174 | }; |
175 | ALIAS_MV(highlander) | ||