ARM: omap2: make arrays containing machine compatible strings const
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 11 Sep 2014 19:29:01 +0000 (21:29 +0200)
committerTony Lindgren <tony@atomide.com>
Thu, 11 Sep 2014 19:34:36 +0000 (12:34 -0700)
commit58cda01ed18945c17ad858dfcf4a9a74ba70157c
tree2d865efed4cb45c4422ce5c2528b04ad4a52039f
parentd7eb67f7fef9c046f27a975118da2324de65a90c
ARM: omap2: make arrays containing machine compatible strings const

The definition

static const char *omap3_boards_compat[] __initconst = {

defines a changable array of constant strings. That is you must not do:

*omap3_boards_compat[0] = 'f';

but

omap3_boards_compat[0] = "another 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: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/board-generic.c