diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:05 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:44 -0500 |
commit | e9adeca3fc4fd9b353f2514daa7d799076ae079c (patch) | |
tree | f889e11f70411c773343006862d7e009a79605b9 /arch/powerpc/cpu/mpc85xx | |
parent | 225ca83dfea4f9b9a313c5233297132206bff431 (diff) | |
download | u-boot-imx-e9adeca3fc4fd9b353f2514daa7d799076ae079c.zip u-boot-imx-e9adeca3fc4fd9b353f2514daa7d799076ae079c.tar.gz u-boot-imx-e9adeca3fc4fd9b353f2514daa7d799076ae079c.tar.bz2 |
ppc: arm: Move sdhc_clk into arch_global_data
This is used by both powerpc and arm, but I think it still qualifies as
architecture-specific.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/speed.c b/arch/powerpc/cpu/mpc85xx/speed.c index 7173c07..297f2ed 100644 --- a/arch/powerpc/cpu/mpc85xx/speed.c +++ b/arch/powerpc/cpu/mpc85xx/speed.c @@ -428,9 +428,9 @@ int get_clocks (void) #if defined(CONFIG_FSL_ESDHC) #if defined(CONFIG_MPC8569) || defined(CONFIG_P1010) ||\ defined(CONFIG_P1014) - gd->sdhc_clk = gd->bus_clk; + gd->arch.sdhc_clk = gd->bus_clk; #else - gd->sdhc_clk = gd->bus_clk / 2; + gd->arch.sdhc_clk = gd->bus_clk / 2; #endif #endif /* defined(CONFIG_FSL_ESDHC) */ |