diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-03-19 13:50:53 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-05-22 17:38:43 +0200 |
commit | d453ef752cf01e96168ea012016baea0079f5377 (patch) | |
tree | 1306c25c290f5245e77fb29e9f00aa75250ad459 /arch/arm/mach-rockchip/rockchip.c | |
parent | ARM: l2c: omap2: remove ES1.0 support (diff) | |
download | linux-d453ef752cf01e96168ea012016baea0079f5377.tar.xz 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-rockchip/rockchip.c')
-rw-r--r-- | arch/arm/mach-rockchip/rockchip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rockchip.c b/arch/arm/mach-rockchip/rockchip.c index d211d6fa0d98..d252efe3747b 100644 --- a/arch/arm/mach-rockchip/rockchip.c +++ b/arch/arm/mach-rockchip/rockchip.c @@ -26,7 +26,7 @@ static void __init rockchip_dt_init(void) { - l2x0_of_init(0, ~0UL); + l2x0_of_init(0, ~0); of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); } |