]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
clocksource/fsl: Avoid harmless 64-bit warnings
authorArnd Bergmann <arnd@arndb.de>
Mon, 16 Nov 2015 16:34:50 +0000 (17:34 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 16 Nov 2015 18:07:08 +0000 (19:07 +0100)
commitdde7632ed02382e4bac2b57c66ee2285764f2cd7
tree63b2288fc9e4ce5fb268882ed266cf5a8426a7f8
parent8005c49d9aea74d382f474ce11afbbc7d7130bec
clocksource/fsl: Avoid harmless 64-bit warnings

The ftm_clockevent_init passes the value of "~0UL" into a function
that takes a 32-bit argument, which drops the upper 32 bits, as
gcc warns about on ARM64:

clocksource/fsl_ftm_timer.c: In function 'ftm_clockevent_init':
clocksource/fsl_ftm_timer.c:206:13: warning: large integer implicitly truncated to unsigned type [-Woverflow]

This was obviously unintended behavior, and is easily avoided by
using '~0u' as the integer literal, because that is 32-bit wide
on all architectures.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: linux-arm-kernel@lists.infradead.org
Cc: Xiubo Li <Li.Xiubo@freescale.com>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Stefan Agner <stefan@agner.ch>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: http://lkml.kernel.org/r/3990834.xnjhm37Grs@wuerfel
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
drivers/clocksource/fsl_ftm_timer.c