diff options
| author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:54 +0000 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:43 -0500 |
| commit | fefb098b187caab34edc72df141125925c9bba62 (patch) | |
| tree | e962092e6cacc356a79b3c20e94b6040c5d9d96b /arch/powerpc/cpu/mpc512x/serial.c | |
| parent | b28774966c933780e891998b472528ba0724b8e0 (diff) | |
| download | olio-uboot-2014.01-fefb098b187caab34edc72df141125925c9bba62.tar.xz olio-uboot-2014.01-fefb098b187caab34edc72df141125925c9bba62.zip | |
ppc: Move mpc512x clocks to arch_global_data
Move ips_clk and csb_clk into arch_global_data and tidy up.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc512x/serial.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc512x/serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc512x/serial.c b/arch/powerpc/cpu/mpc512x/serial.c index 58587fd5b..3afbe8101 100644 --- a/arch/powerpc/cpu/mpc512x/serial.c +++ b/arch/powerpc/cpu/mpc512x/serial.c @@ -140,7 +140,7 @@ void serial_setbrg_dev(unsigned int idx) } /* calculate divisor for setting PSC CTUR and CTLR registers */ - baseclk = (gd->ips_clk + 8) / 16; + baseclk = (gd->arch.ips_clk + 8) / 16; div = (baseclk + (baudrate / 2)) / baudrate; out_8(&psc->ctur, (div >> 8) & 0xff); |