1
0
Fork 0
alistair23-linux/arch/arm/mach-highbank
Uwe Kleine-König 543c5040f5 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 <u.kleine-koenig@pengutronix.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2015-02-19 09:44:17 +01:00
..
Kconfig PM / OPP: Remove ARCH_HAS_OPP 2014-07-23 00:51:30 +02:00
Makefile ARM: highbank: adapt to use ARM PSCI calls 2013-10-01 16:34:16 -05:00
core.h ARM: highbank: adapt to use ARM PSCI calls 2013-10-01 16:34:16 -05:00
highbank.c ARM: make arrays containing machine compatible strings const 2015-02-19 09:44:17 +01:00
pm.c ARM: highbank: adapt to use ARM PSCI calls 2013-10-01 16:34:16 -05:00
smc.S ARM: highbank: Add smc calls to enable/disable the L2 2012-06-07 22:39:43 -07:00
sysregs.h ARM: highbank: mask cluster id from cpu_logical_map 2013-01-31 13:54:30 -06:00
system.c reboot: arm: change reboot_mode to use enum reboot_mode 2013-07-09 10:33:29 -07:00