aboutsummaryrefslogtreecommitdiff
path: root/src/soc/rockchip/rk3288/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/rockchip/rk3288/timer.c')
-rw-r--r--src/soc/rockchip/rk3288/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/rockchip/rk3288/timer.c b/src/soc/rockchip/rk3288/timer.c
index 253d145b44..d373f7a39c 100644
--- a/src/soc/rockchip/rk3288/timer.c
+++ b/src/soc/rockchip/rk3288/timer.c
@@ -41,7 +41,7 @@ void timer_monotonic_get(struct mono_time *mt)
void init_timer(void)
{
- write32(TIMER_LOAD_VAL, &timer7_ptr->timer_load_count0);
- write32(TIMER_LOAD_VAL, &timer7_ptr->timer_load_count1);
- write32(1, &timer7_ptr->timer_ctrl_reg);
+ writel(TIMER_LOAD_VAL, &timer7_ptr->timer_load_count0);
+ writel(TIMER_LOAD_VAL, &timer7_ptr->timer_load_count1);
+ writel(1, &timer7_ptr->timer_ctrl_reg);
}