diff options
-rw-r--r-- | arch/m68k/kernel/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/m68k/kernel/setup.c b/arch/m68k/kernel/setup.c index b1f39e4cedbc..ea1e44da19b9 100644 --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c | |||
@@ -122,6 +122,7 @@ extern int bvme6000_parse_bootinfo(const struct bi_record *); | |||
122 | extern int mvme16x_parse_bootinfo(const struct bi_record *); | 122 | extern int mvme16x_parse_bootinfo(const struct bi_record *); |
123 | extern int mvme147_parse_bootinfo(const struct bi_record *); | 123 | extern int mvme147_parse_bootinfo(const struct bi_record *); |
124 | extern int hp300_parse_bootinfo(const struct bi_record *); | 124 | extern int hp300_parse_bootinfo(const struct bi_record *); |
125 | extern int apollo_parse_bootinfo(const struct bi_record *); | ||
125 | 126 | ||
126 | extern void config_amiga(void); | 127 | extern void config_amiga(void); |
127 | extern void config_atari(void); | 128 | extern void config_atari(void); |
@@ -189,6 +190,8 @@ static void __init m68k_parse_bootinfo(const struct bi_record *record) | |||
189 | unknown = mvme147_parse_bootinfo(record); | 190 | unknown = mvme147_parse_bootinfo(record); |
190 | else if (MACH_IS_HP300) | 191 | else if (MACH_IS_HP300) |
191 | unknown = hp300_parse_bootinfo(record); | 192 | unknown = hp300_parse_bootinfo(record); |
193 | else if (MACH_IS_APOLLO) | ||
194 | unknown = apollo_parse_bootinfo(record); | ||
192 | else | 195 | else |
193 | unknown = 1; | 196 | unknown = 1; |
194 | } | 197 | } |