aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/xen-netback/interface.c
diff options
context:
space:
mode:
authorUwe Kleine-König <[email protected]>2015-02-18 20:01:45 +0000
committerArnd Bergmann <[email protected]>2015-02-19 08:44:17 +0000
commit543c5040f564c80fe59ae82a60fc061055d04a41 (patch)
tree40f47351a06a1d8e54f0956803e58cdcfe09bb8a /drivers/net/xen-netback/interface.c
parentARM: mm: Remove Kconfig symbol CACHE_PL310 (diff)
downloadkernel-543c5040f564c80fe59ae82a60fc061055d04a41.tar.gz
kernel-543c5040f564c80fe59ae82a60fc061055d04a41.zip
ARM: make arrays containing machine compatible strings const
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 <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>
Diffstat (limited to 'drivers/net/xen-netback/interface.c')
0 files changed, 0 insertions, 0 deletions