diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:49 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:42 -0500 |
commit | 609e6ec3f623f3c3aa2a056654fbc5886e092897 (patch) | |
tree | e96d7d41daca9156d94c3a289f3312b46ac74412 /arch/m68k/cpu/mcf52x2/speed.c | |
parent | 67ac13b1b9b6ca00893714fbc8cbf556bab6fd59 (diff) | |
download | u-boot-609e6ec3f623f3c3aa2a056654fbc5886e092897.tar.gz u-boot-609e6ec3f623f3c3aa2a056654fbc5886e092897.tar.xz u-boot-609e6ec3f623f3c3aa2a056654fbc5886e092897.zip |
ppc: m68k: Move i2c1_clk, i2c2_clk to arch_global_data
Move these fields into arch_global_data and tidy up. This is needed for
both ppc and m68k since they share the i2c driver.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/m68k/cpu/mcf52x2/speed.c')
-rw-r--r-- | arch/m68k/cpu/mcf52x2/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/cpu/mcf52x2/speed.c b/arch/m68k/cpu/mcf52x2/speed.c index 70abed25c4..ba7dbaa1cf 100644 --- a/arch/m68k/cpu/mcf52x2/speed.c +++ b/arch/m68k/cpu/mcf52x2/speed.c @@ -91,9 +91,9 @@ int get_clocks (void) #endif #ifdef CONFIG_FSL_I2C - gd->i2c1_clk = gd->bus_clk; + gd->arch.i2c1_clk = gd->bus_clk; #ifdef CONFIG_SYS_I2C2_OFFSET - gd->i2c2_clk = gd->bus_clk; + gd->arch.i2c2_clk = gd->bus_clk; #endif #endif |