aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mvebu
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2014-03-19 08:50:53 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2014-05-22 11:38:43 -0400
commitd453ef752cf01e96168ea012016baea0079f5377 (patch)
tree1306c25c290f5245e77fb29e9f00aa75250ad459 /arch/arm/mach-mvebu
parentcef3d92c5bd54b38ddca48c4394e0991be934385 (diff)
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-mvebu')
-rw-r--r--arch/arm/mach-mvebu/board-v7.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvebu/board-v7.c b/arch/arm/mach-mvebu/board-v7.c
index 333fca8fdc41..c6bd79f64744 100644
--- a/arch/arm/mach-mvebu/board-v7.c
+++ b/arch/arm/mach-mvebu/board-v7.c
@@ -60,7 +60,7 @@ static void __init mvebu_timer_and_clk_init(void)
60 coherency_init(); 60 coherency_init();
61 BUG_ON(mvebu_mbus_dt_init()); 61 BUG_ON(mvebu_mbus_dt_init());
62#ifdef CONFIG_CACHE_L2X0 62#ifdef CONFIG_CACHE_L2X0
63 l2x0_of_init(0, ~0UL); 63 l2x0_of_init(0, ~0);
64#endif 64#endif
65 65
66 if (of_machine_is_compatible("marvell,armada375")) 66 if (of_machine_is_compatible("marvell,armada375"))