summaryrefslogtreecommitdiffstats
path: root/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'cpu')
-rw-r--r--cpu/mpc5xxx/speed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/mpc5xxx/speed.c b/cpu/mpc5xxx/speed.c
index 83b120e1ff..17fdea49f4 100644
--- a/cpu/mpc5xxx/speed.c
+++ b/cpu/mpc5xxx/speed.c
@@ -77,7 +77,7 @@ int get_clocks (void)
default: gd->pci_clk = gd->bus_clk / 4; break;
}
- return (0);
+ return 0;
}
core_initcall(get_clocks);
@@ -88,7 +88,7 @@ int prt_mpc5xxx_clks (void)
gd->bus_clk / 1000000, gd->ipb_clk / 1000000,
gd->pci_clk / 1000000);
- return (0);
+ return 0;
}
-/* ------------------------------------------------------------------------- */
+late_initcall(prt_mpc5xxx_clks);