diff options
author | Tom Rini <trini@ti.com> | 2013-02-12 19:03:59 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-12 19:03:59 -0500 |
commit | 9c748e02d99476e6a08d55eadfd8776edffe1e2e (patch) | |
tree | 74018fa9cefe7428a49b398355885b840687cf32 /arch/mips/cpu/xburst/jz4740.c | |
parent | 1634e969189ea428bc5fb9cf7d70bb314c98fc4f (diff) | |
parent | 04380c651a2ff0d1495822321d2b7668dcd02537 (diff) |
Merge branch 'next' of git://git.denx.de/u-boot-mips
Diffstat (limited to 'arch/mips/cpu/xburst/jz4740.c')
-rw-r--r-- | arch/mips/cpu/xburst/jz4740.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/cpu/xburst/jz4740.c b/arch/mips/cpu/xburst/jz4740.c index c0b9817ab9..b2d8f4d20d 100644 --- a/arch/mips/cpu/xburst/jz4740.c +++ b/arch/mips/cpu/xburst/jz4740.c @@ -201,10 +201,10 @@ void calc_clocks(void) pllout = __cpm_get_pllout(); gd->cpu_clk = pllout / div[__cpm_get_cdiv()]; - gd->sys_clk = pllout / div[__cpm_get_hdiv()]; - gd->per_clk = pllout / div[__cpm_get_pdiv()]; + gd->arch.sys_clk = pllout / div[__cpm_get_hdiv()]; + gd->arch.per_clk = pllout / div[__cpm_get_pdiv()]; gd->mem_clk = pllout / div[__cpm_get_mdiv()]; - gd->dev_clk = CONFIG_SYS_EXTAL; + gd->arch.dev_clk = CONFIG_SYS_EXTAL; } void rtc_init(void) |