提交 d4688bdc 编写于 作者: M Maxime Coquelin 提交者: Daniel Lezcano

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: Nkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: NMaxime Coquelin <mcoquelin.stm32@gmail.com>
Signed-off-by: NDaniel Lezcano <daniel.lezcano@linaro.org>
上级 e37e4593
......@@ -137,9 +137,9 @@ static void __init stm32_clockevent_init(struct device_node *np)
}
/* Detect whether the timer is 16 or 32 bits */
writel_relaxed(~0UL, data->base + TIM_ARR);
writel_relaxed(~0U, data->base + TIM_ARR);
max_delta = readl_relaxed(data->base + TIM_ARR);
if (max_delta == ~0UL) {
if (max_delta == ~0U) {
prescaler = 1;
bits = 32;
} else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册