diff options
author | Russell King | 2014-03-19 13:50:53 +0100 |
---|---|---|
committer | Russell King | 2014-05-22 17:38:43 +0200 |
commit | d453ef752cf01e96168ea012016baea0079f5377 (patch) | |
tree | 1306c25c290f5245e77fb29e9f00aa75250ad459 /arch/arm/mach-highbank | |
parent | ARM: l2c: omap2: remove ES1.0 support (diff) | |
download | kernel-qcow2-linux-d453ef752cf01e96168ea012016baea0079f5377.tar.gz kernel-qcow2-linux-d453ef752cf01e96168ea012016baea0079f5377.tar.xz kernel-qcow2-linux-d453ef752cf01e96168ea012016baea0079f5377.zip |
ARM: l2c: remove unnecessary UL-suffix to mask values
They're u32, they're not unsigned long. The UL suffix is not required
here.
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-highbank')
-rw-r--r-- | arch/arm/mach-highbank/highbank.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-highbank/highbank.c b/arch/arm/mach-highbank/highbank.c index c7de89b263dd..38e1dc3b4c6e 100644 --- a/arch/arm/mach-highbank/highbank.c +++ b/arch/arm/mach-highbank/highbank.c @@ -69,7 +69,7 @@ static void __init highbank_init_irq(void) if (IS_ENABLED(CONFIG_CACHE_L2X0) && of_find_compatible_node(NULL, NULL, "arm,pl310-cache")) { highbank_smc1(0x102, 0x1); - l2x0_of_init(0, ~0UL); + l2x0_of_init(0, ~0); outer_cache.disable = highbank_l2x0_disable; } } |