diff options
| author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:07 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:44 -0500 | 
| commit | 7e2592fd5ac3dce73aceb11e1526629840e52797 (patch) | |
| tree | f77b0b1685c2c3a0a08234fcb184b50cc1b750ff /arch/m68k/cpu/mcf5445x/cpu.c | |
| parent | fa25c6f0cccc3691dd3db97cef94a547d1008c73 (diff) | |
| download | olio-uboot-2014.01-7e2592fd5ac3dce73aceb11e1526629840e52797.tar.xz olio-uboot-2014.01-7e2592fd5ac3dce73aceb11e1526629840e52797.zip | |
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/mcf5445x/cpu.c')
| -rw-r--r-- | arch/m68k/cpu/mcf5445x/cpu.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/arch/m68k/cpu/mcf5445x/cpu.c b/arch/m68k/cpu/mcf5445x/cpu.c index b612cdaea..08930f48d 100644 --- a/arch/m68k/cpu/mcf5445x/cpu.c +++ b/arch/m68k/cpu/mcf5445x/cpu.c @@ -101,16 +101,16 @@ 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));  #ifdef CONFIG_PCI  		printf("       PCI CLK %s MHz INP CLK %s MHz VCO CLK %s MHz\n",  		       strmhz(buf1, gd->pci_clk), -		       strmhz(buf2, gd->inp_clk), -		       strmhz(buf3, gd->vco_clk)); +		       strmhz(buf2, gd->arch.inp_clk), +		       strmhz(buf3, gd->arch.vco_clk));  #else  		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));  #endif  	} |