]> git.baikalelectronics.ru Git - kernel.git/commit
clockevents/drivers/timer-stm32: Fix build warning spotted by kbuild test robot
authorMaxime Coquelin <mcoquelin.stm32@gmail.com>
Thu, 28 May 2015 05:05:53 +0000 (07:05 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 2 Jun 2015 10:10:16 +0000 (12:10 +0200)
commit204ed6538259732837c9300f46df7920c2e426df
tree1b564c880d7eb23783de80033bc11186ca11ed7e
parent64e9974661d38d3eee69bd6b713963fe8fc673bc
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>
drivers/clocksource/timer-stm32.c