aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-03-25 11:14:02 +0900
committerOlof Johansson <olof@lixom.net>2016-04-12 12:06:27 -0700
commit3137b716568f3ca8ca575fd13b91ddb42abd6844 (patch)
tree575aeca3738b65df7955c45ca35281053ac13279 /arch
parentMerge tag 'meson8-dt-fix' of https://github.com/carlocaione/linux-meson into fixes (diff)
downloadlinux-dev-3137b716568f3ca8ca575fd13b91ddb42abd6844.tar.xz
linux-dev-3137b716568f3ca8ca575fd13b91ddb42abd6844.zip
ARM: uniphier: drop weird sizeof()
My intention was to ioremap a 4-byte register. Coincidentally enough, sizeof(SZ_4) equals to SZ_4, but this code is weird anyway. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-uniphier/platsmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/platsmp.c b/arch/arm/mach-uniphier/platsmp.c
index 69141357afe8..db04142f88bc 100644
--- a/arch/arm/mach-uniphier/platsmp.c
+++ b/arch/arm/mach-uniphier/platsmp.c
@@ -120,7 +120,7 @@ static int __init uniphier_smp_prepare_trampoline(unsigned int max_cpus)
if (ret)
return ret;
- uniphier_smp_rom_boot_rsv2 = ioremap(rom_rsv2_phys, sizeof(SZ_4));
+ uniphier_smp_rom_boot_rsv2 = ioremap(rom_rsv2_phys, SZ_4);
if (!uniphier_smp_rom_boot_rsv2) {
pr_err("failed to map ROM_BOOT_RSV2 register\n");
return -ENOMEM;