diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:07 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 14:05:44 (GMT) |
commit | 7e2592fd5ac3dce73aceb11e1526629840e52797 (patch) | |
tree | f77b0b1685c2c3a0a08234fcb184b50cc1b750ff /arch/m68k/cpu/mcf5227x/cpu.c | |
parent | fa25c6f0cccc3691dd3db97cef94a547d1008c73 (diff) | |
download | u-boot-7e2592fd5ac3dce73aceb11e1526629840e52797.tar.xz |
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.c | 6 |
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; |