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>
Cette révision appartient à :
Nicolas Pitre
2015-07-27 18:27:52 -04:00
révisé par Olof Johansson
Parent a115681460
révision 19c233b79d
40 fichiers modifiés avec 50 ajouts et 50 suppressions

Voir le fichier

@@ -204,7 +204,7 @@ static void __init spear_clockevent_init(int irq)
setup_irq(irq, &spear_timer_irq);
}
const static struct of_device_id timer_of_match[] __initconst = {
static const struct of_device_id const timer_of_match[] __initconst = {
{ .compatible = "st,spear-timer", },
{ },
};