diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2008-07-17 15:16:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-20 20:24:40 -0400 |
commit | 635c0a217425f6f37422b85bcc88a7af9efc457c (patch) | |
tree | 0bb2e9b60e6a4c201a545b2c1d4def320731528b /arch/m68k | |
parent | a594409a2160070b2185e77b33232cf73a9151a5 (diff) |
m68k/apollo: Add missing call to apollo_parse_bootinfo()
Add the missing call to apollo_parse_bootinfo(), which had been lost from a
big Apollo support patch by Peter De Schrijver in 1999.
Thanks to Adrian Bunk for noticing!
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k')
-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 | } |