aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/timer-stm32.c
diff options
context:
space:
mode:
authorMaxime Coquelin <mcoquelin.stm32@gmail.com>2015-05-28 01:05:53 -0400
committerDaniel Lezcano <daniel.lezcano@linaro.org>2015-06-02 06:10:16 -0400
commitd4688bdc6335e9faaf3f0173f96932cd520cee1a (patch)
tree1b564c880d7eb23783de80033bc11186ca11ed7e /drivers/clocksource/timer-stm32.c
parente37e45934afed32f00e16db745c410d5c675456d (diff)
clockevents/drivers/timer-stm32: Fix build warning spotted by kbuild test robot
This patch fixes below warning spotted by kbuild test robot when building with ARCH=powerpc: drivers/clocksource/timer-stm32.c: In function 'stm32_clockevent_init': >> drivers/clocksource/timer-stm32.c:140:9: warning: large integer implicitly truncated to unsigned type [-Woverflow] writel_relaxed(~0UL, data->base + TIM_ARR); The fix consists in using 0U instead of 0UL. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
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 {