linux_dsm_epyc7002/arch/arm/mach-shmobile
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
..
include/mach
board-ape6evm-reference.c
board-ape6evm.c Third Round of Renesas ARM Based SoC Fixes for v3.19 2015-02-01 08:51:12 -08:00
board-armadillo800eva.c
board-bockw-reference.c
board-bockw.c
board-kzm9g-reference.c
board-kzm9g.c
board-mackerel.c
board-marzen-reference.c
board-marzen.c
clock-r8a73a4.c
clock-r8a7740.c
clock-r8a7778.c
clock-r8a7779.c
clock-sh73a0.c ARM: shmobile: sh73a0 legacy/reference: Add missing INTCA0 clock for irqpin module 2014-12-21 17:11:18 +09:00
clock-sh7372.c
clock.c
clock.h
common.h
console.c
cpufreq.c
cpuidle.c
dma-register.h
entry-intc.S
headsmp-scu.S
headsmp.S
intc-sh73a0.c
intc-sh7372.c
intc.h
irqs.h
Kconfig ARM: SoC platform changes 2015-02-17 09:27:54 -08:00
Makefile ARM: shmobile: r8a7790: Remove legacy code 2014-12-21 17:03:50 +09:00
Makefile.boot ARM: shmobile: lager: Remove legacy board support 2014-12-21 17:03:44 +09:00
platsmp-apmu.c
platsmp-apmu.h
platsmp-scu.c
platsmp.c
pm-r8a7740.c ARM: shmobile: R-Mobile: Store SYSC base address in rmobile_pm_domain 2015-01-13 09:33:19 +09:00
pm-r8a7779.c
pm-r8a7790.c
pm-r8a7791.c
pm-rcar.c
pm-rcar.h
pm-rmobile.c ARM: shmobile: R-Mobile: Special-case PM domains with memory-controllers 2015-01-16 11:02:42 +09:00
pm-rmobile.h ARM: shmobile: R-Mobile: Add DT support for PM domains 2015-01-15 08:38:14 +09:00
pm-sh73a0.c
pm-sh7372.c ARM: shmobile: R-Mobile: Store SYSC base address in rmobile_pm_domain 2015-01-13 09:33:19 +09:00
r8a73a4.h
r8a7740.h
r8a7778.h
r8a7779.h
r8a7790.h ARM: shmobile: r8a7790: Remove legacy code 2014-12-21 17:03:50 +09:00
r8a7791.h
rcar-gen2.h
setup-emev2.c ARM: make arrays containing machine compatible strings const 2015-02-19 09:44:17 +01:00
setup-r7s72100.c
setup-r8a73a4.c
setup-r8a7740.c ARM: SoC cleanups 2015-02-17 09:17:33 -08:00
setup-r8a7778.c Second Round of Renesas ARM Based SoC Fixes for v3.19 2015-01-21 17:15:49 -08:00
setup-r8a7779.c Second Round of Renesas ARM Based SoC Fixes for v3.19 2015-01-21 17:15:49 -08:00
setup-r8a7790.c ARM: shmobile: r8a7790: Remove legacy code 2014-12-21 17:03:50 +09:00
setup-r8a7791.c
setup-r8a7794.c
setup-rcar-gen2.c ARM: SoC platform changes 2015-02-17 09:27:54 -08:00
setup-sh73a0.c ARM: SoC driver updates 2015-02-17 09:38:59 -08:00
setup-sh7372.c
sh73a0.h
sh7372.h
sh-gpio.h
sleep-sh7372.S
smp-emev2.c
smp-r8a7779.c ARM: shmobile: r8a7779: No TWD setup in C for Multiplatform 2014-12-21 17:11:20 +09:00
smp-r8a7790.c
smp-r8a7791.c
smp-sh73a0.c
suspend.c
timer.c Third Round of Renesas ARM Based SoC Fixes for v3.19 2015-02-01 08:51:12 -08:00