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/vr41xx | |
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/vr41xx')
-rw-r--r-- | arch/mips/vr41xx/common/init.c | 14 | ||||
-rw-r--r-- | arch/mips/vr41xx/nec-cmbvr4133/setup.c | 5 |
2 files changed, 9 insertions, 10 deletions
diff --git a/arch/mips/vr41xx/common/init.c b/arch/mips/vr41xx/common/init.c index e03be896cbc4..578f6496ffd4 100644 --- a/arch/mips/vr41xx/common/init.c +++ b/arch/mips/vr41xx/common/init.c | |||
@@ -58,6 +58,14 @@ static void __init timer_init(void) | |||
58 | board_timer_setup = setup_timer_irq; | 58 | board_timer_setup = setup_timer_irq; |
59 | } | 59 | } |
60 | 60 | ||
61 | void __init plat_setup(void) | ||
62 | { | ||
63 | vr41xx_calculate_clock_frequency(); | ||
64 | |||
65 | timer_init(); | ||
66 | iomem_resource_init(); | ||
67 | } | ||
68 | |||
61 | void __init prom_init(void) | 69 | void __init prom_init(void) |
62 | { | 70 | { |
63 | int argc, i; | 71 | int argc, i; |
@@ -71,12 +79,6 @@ void __init prom_init(void) | |||
71 | if (i < (argc - 1)) | 79 | if (i < (argc - 1)) |
72 | strcat(arcs_cmdline, " "); | 80 | strcat(arcs_cmdline, " "); |
73 | } | 81 | } |
74 | |||
75 | vr41xx_calculate_clock_frequency(); | ||
76 | |||
77 | timer_init(); | ||
78 | |||
79 | iomem_resource_init(); | ||
80 | } | 82 | } |
81 | 83 | ||
82 | unsigned long __init prom_free_prom_memory (void) | 84 | unsigned long __init prom_free_prom_memory (void) |
diff --git a/arch/mips/vr41xx/nec-cmbvr4133/setup.c b/arch/mips/vr41xx/nec-cmbvr4133/setup.c index db686ce42e85..53272a5c3cbe 100644 --- a/arch/mips/vr41xx/nec-cmbvr4133/setup.c +++ b/arch/mips/vr41xx/nec-cmbvr4133/setup.c | |||
@@ -56,7 +56,7 @@ static struct mtd_partition cmbvr4133_mtd_parts[] = { | |||
56 | 56 | ||
57 | extern void i8259_init(void); | 57 | extern void i8259_init(void); |
58 | 58 | ||
59 | static int __init nec_cmbvr4133_setup(void) | 59 | static void __init nec_cmbvr4133_setup(void) |
60 | { | 60 | { |
61 | #ifdef CONFIG_ROCKHOPPER | 61 | #ifdef CONFIG_ROCKHOPPER |
62 | extern void disable_pcnet(void); | 62 | extern void disable_pcnet(void); |
@@ -90,7 +90,4 @@ static int __init nec_cmbvr4133_setup(void) | |||
90 | #ifdef CONFIG_ROCKHOPPER | 90 | #ifdef CONFIG_ROCKHOPPER |
91 | i8259_init(); | 91 | i8259_init(); |
92 | #endif | 92 | #endif |
93 | return 0; | ||
94 | } | 93 | } |
95 | |||
96 | early_initcall(nec_cmbvr4133_setup); | ||