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>
このコミットが含まれているのは:
Russell King
2014-03-19 12:50:53 +00:00
コミット d453ef752c
7個のファイルの変更7行の追加7行の削除

ファイルの表示

@@ -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;
}
}