summaryrefslogtreecommitdiff
path: root/arch/m68k/cpu/mcf5227x/cpu.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2012-12-13 20:49:07 +0000
committerTom Rini <trini@ti.com>2013-02-04 09:05:44 -0500
commit7e2592fd5ac3dce73aceb11e1526629840e52797 (patch)
treef77b0b1685c2c3a0a08234fcb184b50cc1b750ff /arch/m68k/cpu/mcf5227x/cpu.c
parentfa25c6f0cccc3691dd3db97cef94a547d1008c73 (diff)
downloadu-boot-imx-7e2592fd5ac3dce73aceb11e1526629840e52797.zip
u-boot-imx-7e2592fd5ac3dce73aceb11e1526629840e52797.tar.gz
u-boot-imx-7e2592fd5ac3dce73aceb11e1526629840e52797.tar.bz2
m68k: Move CONFIG_EXTRA_CLOCK to arch_global_data
Move inp_clk, vco_clk and flb_clk into arch_global_data and tidy up. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/m68k/cpu/mcf5227x/cpu.c')
-rw-r--r--arch/m68k/cpu/mcf5227x/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/cpu/mcf5227x/cpu.c b/arch/m68k/cpu/mcf5227x/cpu.c
index 3a0ab97..705bd44 100644
--- a/arch/m68k/cpu/mcf5227x/cpu.c
+++ b/arch/m68k/cpu/mcf5227x/cpu.c
@@ -68,10 +68,10 @@ int checkcpu(void)
printf(" CPU CLK %s MHz BUS CLK %s MHz FLB CLK %s MHz\n",
strmhz(buf1, gd->cpu_clk),
strmhz(buf2, gd->bus_clk),
- strmhz(buf3, gd->flb_clk));
+ strmhz(buf3, gd->arch.flb_clk));
printf(" INP CLK %s MHz VCO CLK %s MHz\n",
- strmhz(buf1, gd->inp_clk),
- strmhz(buf2, gd->vco_clk));
+ strmhz(buf1, gd->arch.inp_clk),
+ strmhz(buf2, gd->arch.vco_clk));
}
return 0;