diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-06-21 09:56:30 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:18 -0400 |
commit | c83cfc9c9477d0bc0e0a1ba29dfc58e0d42b2faf (patch) | |
tree | 86c613b44ae25af1808b81dde2a4dc0274647194 /arch/mips/sgi-ip27 | |
parent | 8c93650890a33318263880dec36603a6d5749b7e (diff) |
Get rid of early_init. There's more need to make this form of
initialization actually useful and as is certainly unmergable with
upstream.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip27')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-init.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/mips/sgi-ip27/ip27-init.c b/arch/mips/sgi-ip27/ip27-init.c index 6dcee5c46c74..ad1e86b54fae 100644 --- a/arch/mips/sgi-ip27/ip27-init.c +++ b/arch/mips/sgi-ip27/ip27-init.c | |||
@@ -198,7 +198,7 @@ extern void ip27_setup_console(void); | |||
198 | extern void ip27_time_init(void); | 198 | extern void ip27_time_init(void); |
199 | extern void ip27_reboot_setup(void); | 199 | extern void ip27_reboot_setup(void); |
200 | 200 | ||
201 | static int __init ip27_setup(void) | 201 | void __init plat_setup(void) |
202 | { | 202 | { |
203 | hubreg_t p, e, n_mode; | 203 | hubreg_t p, e, n_mode; |
204 | nasid_t nid; | 204 | nasid_t nid; |
@@ -245,8 +245,4 @@ static int __init ip27_setup(void) | |||
245 | set_io_port_base(IO_BASE); | 245 | set_io_port_base(IO_BASE); |
246 | 246 | ||
247 | board_time_init = ip27_time_init; | 247 | board_time_init = ip27_time_init; |
248 | |||
249 | return 0; | ||
250 | } | 248 | } |
251 | |||
252 | early_initcall(ip27_setup); | ||