1
0
Fork 0
alistair23-linux/arch/arm/mach-hisi
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 ARM: hisi: enable HiP01 SoC 2015-01-21 14:31:06 -08:00
Makefile ARM: hisi: Fix platmcpm compilation when ARMv6 is selected 2014-09-24 10:30:39 -07:00
core.h ARM: hisi: enable smp for HiP01 2015-01-21 14:33:39 -08:00
headsmp.S ARM: hisi: rename secondary_startup function 2015-01-21 14:33:01 -08:00
hisilicon.c ARM: make arrays containing machine compatible strings const 2015-02-19 09:44:17 +01:00
hotplug.c ARM: hisi: enable smp for HiP01 2015-01-21 14:33:39 -08:00
platmcpm.c ARM: hisi: enable MCPM implementation 2014-09-03 14:10:12 +01:00
platsmp.c ARM: hisi: enable smp for HiP01 2015-01-21 14:33:39 -08:00