From: Uwe Kleine-König Date: Thu, 11 Sep 2014 19:29:01 +0000 (+0200) Subject: ARM: omap2: make arrays containing machine compatible strings const X-Git-Tag: fixes-v3.18-not-urgent~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58cda01ed18945c17ad858dfcf4a9a74ba70157c;p=pandora-kernel.git 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 Signed-off-by: Tony Lindgren --- Reading git-diff-tree failed