diff options
author | Nicolas Pitre | 2015-07-28 00:27:52 +0200 |
---|---|---|
committer | Olof Johansson | 2015-07-28 13:55:27 +0200 |
commit | 19c233b79d1af7b5af1ec68c1172848648184449 (patch) | |
tree | 72f3f43b983202fdc3483f803778e3d7c2f457c0 /arch/arm/mach-bcm | |
parent | Merge tag 'renesas-cleanup2-for-v4.3' of git://git.kernel.org/pub/scm/linux/k... (diff) | |
download | kernel-qcow2-linux-19c233b79d1af7b5af1ec68c1172848648184449.tar.gz kernel-qcow2-linux-19c233b79d1af7b5af1ec68c1172848648184449.tar.xz kernel-qcow2-linux-19c233b79d1af7b5af1ec68c1172848648184449.zip |
ARM: appropriate __init annotation for const data
Init data marked const should be annotated with __initconst for
correctness and not __initdata. In some cases the array gathering
references to that data has to be marked const as well. This fixes
LTO builds that otherwise fail with section mismatch errors.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-bcm')
-rw-r--r-- | arch/arm/mach-bcm/bcm_5301x.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-bcm/bcm_kona_smc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-bcm/bcm_5301x.c b/arch/arm/mach-bcm/bcm_5301x.c index 7aef92720eb4..5478fe6bcce6 100644 --- a/arch/arm/mach-bcm/bcm_5301x.c +++ b/arch/arm/mach-bcm/bcm_5301x.c @@ -44,7 +44,7 @@ static void __init bcm5301x_init_early(void) "imprecise external abort"); } -static const char __initconst *bcm5301x_dt_compat[] = { +static const char *const bcm5301x_dt_compat[] __initconst = { "brcm,bcm4708", NULL, }; diff --git a/arch/arm/mach-bcm/bcm_kona_smc.c b/arch/arm/mach-bcm/bcm_kona_smc.c index a55a7ecf146a..cf3f8658f0e5 100644 --- a/arch/arm/mach-bcm/bcm_kona_smc.c +++ b/arch/arm/mach-bcm/bcm_kona_smc.c @@ -33,7 +33,7 @@ struct bcm_kona_smc_data { unsigned result; }; -static const struct of_device_id bcm_kona_smc_ids[] __initconst = { +static const struct of_device_id const bcm_kona_smc_ids[] __initconst = { {.compatible = "brcm,kona-smc"}, {.compatible = "bcm,kona-smc"}, /* deprecated name */ {}, |