aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/timer-stm32.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/clocksource/timer-stm32.c')
-rw-r--r--drivers/clocksource/timer-stm32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clocksource/timer-stm32.c b/drivers/clocksource/timer-stm32.c
index fad2e2e7a0b8..a97e8b50701c 100644
--- a/drivers/clocksource/timer-stm32.c
+++ b/drivers/clocksource/timer-stm32.c
@@ -137,9 +137,9 @@ static void __init stm32_clockevent_init(struct device_node *np)
137 } 137 }
138 138
139 /* Detect whether the timer is 16 or 32 bits */ 139 /* Detect whether the timer is 16 or 32 bits */
140 writel_relaxed(~0UL, data->base + TIM_ARR); 140 writel_relaxed(~0U, data->base + TIM_ARR);
141 max_delta = readl_relaxed(data->base + TIM_ARR); 141 max_delta = readl_relaxed(data->base + TIM_ARR);
142 if (max_delta == ~0UL) { 142 if (max_delta == ~0U) {
143 prescaler = 1; 143 prescaler = 1;
144 bits = 32; 144 bits = 32;
145 } else { 145 } else {