diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:36 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-01 15:07:50 -0500 |
commit | 5f70714c2feb94318f2c2a153f4089e32f353548 (patch) | |
tree | e60c0721297f8bf8d30d8c797f0e4b3d09716d7f /arch/arm/cpu | |
parent | 582601da2f90b1850aa19f7820b1623c79b3dac6 (diff) | |
download | u-boot-imx-5f70714c2feb94318f2c2a153f4089e32f353548.zip u-boot-imx-5f70714c2feb94318f2c2a153f4089e32f353548.tar.gz u-boot-imx-5f70714c2feb94318f2c2a153f4089e32f353548.tar.bz2 |
arm: Move timer_reset_value to arch_global_data
Move this field into arch_global_data and tidy up.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm926ejs/davinci/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/arm926ejs/davinci/timer.c b/arch/arm/cpu/arm926ejs/davinci/timer.c index b620bf7..4142932 100644 --- a/arch/arm/cpu/arm926ejs/davinci/timer.c +++ b/arch/arm/cpu/arm926ejs/davinci/timer.c @@ -61,7 +61,7 @@ int timer_init(void) writel(TIMER_LOAD_VAL, &timer->prd34); writel(2 << 22, &timer->tcr); gd->arch.timer_rate_hz = CONFIG_SYS_HZ_CLOCK / TIM_CLK_DIV; - gd->timer_reset_value = 0; + gd->arch.timer_reset_value = 0; return(0); } @@ -85,7 +85,7 @@ ulong get_timer(ulong base) { unsigned long long timer_diff; - timer_diff = get_ticks() - gd->timer_reset_value; + timer_diff = get_ticks() - gd->arch.timer_reset_value; return lldiv(timer_diff, (gd->arch.timer_rate_hz / CONFIG_SYS_HZ)) - base; |