543c5040f5
The definition static const char *axxia_dt_match[] __initconst = { ... defines a changable array of constant strings. That is you must not do: *axxia_dt_match[0] = 'k'; but axxia_dt_match[0] = "different string"; is fine. So the annotation __initconst is wrong and yields a compiler error when other really const variables are added with __initconst. As the struct machine_desc member dt_compat is declared as const char *const *dt_compat; making the arrays const is the better alternative over changing all annotations to __initdata. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Arnd Bergmann <arnd@arndb.de> |
||
---|---|---|
.. | ||
bcm63xx.c | ||
bcm_5301x.c | ||
bcm_cygnus.c | ||
bcm_kona_smc.c | ||
bcm_kona_smc.h | ||
board_bcm281xx.c | ||
board_bcm2835.c | ||
board_bcm21664.c | ||
brcmstb.c | ||
brcmstb.h | ||
headsmp-brcmstb.S | ||
Kconfig | ||
kona_l2_cache.c | ||
kona_l2_cache.h | ||
kona_smp.c | ||
Makefile | ||
platsmp-brcmstb.c |