From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: tglx@linutronix.de, mingo@kernel.org
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>,
kbuild test robot <fengguang.wu@intel.com>,
linux-kernel@vger.kernel.org (open list:CLOCKSOURCE, CLOC...)
Subject: [PATCH 11/11] clockevents/drivers/timer-stm32: Fix build warning spotted by kbuild test robot
Date: Tue, 2 Jun 2015 14:31:56 +0200 [thread overview]
Message-ID: <1433248316-26320-11-git-send-email-daniel.lezcano@linaro.org> (raw)
In-Reply-To: <1433248316-26320-1-git-send-email-daniel.lezcano@linaro.org>
From: Maxime Coquelin <mcoquelin.stm32@gmail.com>
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 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/clocksource/timer-stm32.c b/drivers/clocksource/timer-stm32.c
index fad2e2e..a97e8b5 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)
}
/* 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 {
--
1.9.1
prev parent reply other threads:[~2015-06-02 12:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <556DA1E5.1030601@linaro.org>
2015-06-02 12:31 ` [PATCH 01/11] clocksource/drivers/qcom: Remove dead code Daniel Lezcano
2015-06-02 12:31 ` [PATCH 02/11] clocksource/drivers/exynos_mct: Change exynos4_mct_tick_clear return type to void Daniel Lezcano
2015-06-02 12:31 ` [PATCH 03/11] clocksource/drivers/exynos_mct: Staticize struct clocksource Daniel Lezcano
2015-06-02 12:31 ` [PATCH 04/11] clocksource/drivers/exynos_mct: Remove old platform mct_init() Daniel Lezcano
2015-06-02 12:31 ` [PATCH 05/11] clocksource/drivers/lpc32xx: Add the lpc32xx timer driver Daniel Lezcano
2015-06-02 12:31 ` [PATCH 06/11] doc: dt: Add documentation for lpc3220-timer Daniel Lezcano
2015-06-02 12:31 ` [PATCH 07/11] dt-bindings: Document the ARM System timer bindings Daniel Lezcano
2015-06-02 12:31 ` [PATCH 08/11] clocksource/drivers/armv7m_systick: Add ARM System timer driver Daniel Lezcano
2015-06-02 12:31 ` [PATCH 09/11] dt-bindings: Document the STM32 timer bindings Daniel Lezcano
2015-06-02 12:31 ` [PATCH 10/11] clockevents/drivers: Add STM32 Timer driver Daniel Lezcano
2015-06-02 12:31 ` Daniel Lezcano [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1433248316-26320-11-git-send-email-daniel.lezcano@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=fengguang.wu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mcoquelin.stm32@gmail.com \
--cc=mingo@kernel.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®