diff options
| author | 2014-03-19 12:50:53 +0000 | |
|---|---|---|
| committer | 2014-05-22 16:38:43 +0100 | |
| commit | d453ef752cf01e96168ea012016baea0079f5377 (patch) | |
| tree | 1306c25c290f5245e77fb29e9f00aa75250ad459 /arch/arm/mach-imx/system.c | |
| parent | ARM: l2c: omap2: remove ES1.0 support (diff) | |
| download | wireguard-linux-d453ef752cf01e96168ea012016baea0079f5377.tar.xz wireguard-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-imx/system.c')
| -rw-r--r-- | arch/arm/mach-imx/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/system.c b/arch/arm/mach-imx/system.c index 5e3027d3692f..c6571f1de9fd 100644 --- a/arch/arm/mach-imx/system.c +++ b/arch/arm/mach-imx/system.c @@ -145,6 +145,6 @@ void __init imx_init_l2cache(void) of_node_put(np); out: - l2x0_of_init(0, ~0UL); + l2x0_of_init(0, ~0); } #endif |
