Browse Source

ARC: [arcfpga] Fix __initconst data const-correctness

Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Mischa Jonker 11 years ago
parent
commit
18bff65e37
1 changed files with 3 additions and 3 deletions
  1. 3 3
      arch/arc/plat-arcfpga/platform.c

+ 3 - 3
arch/arc/plat-arcfpga/platform.c

@@ -201,7 +201,7 @@ static void __init plat_fpga_populate_dev(void)
  * callback set, by matching the DT compatible name.
  * callback set, by matching the DT compatible name.
  */
  */
 
 
-static const char *aa4_compat[] __initdata = {
+static const char *aa4_compat[] __initconst = {
 	"snps,arc-angel4",
 	"snps,arc-angel4",
 	NULL,
 	NULL,
 };
 };
@@ -216,7 +216,7 @@ MACHINE_START(ANGEL4, "angel4")
 #endif
 #endif
 MACHINE_END
 MACHINE_END
 
 
-static const char *ml509_compat[] __initdata = {
+static const char *ml509_compat[] __initconst = {
 	"snps,arc-ml509",
 	"snps,arc-ml509",
 	NULL,
 	NULL,
 };
 };
@@ -231,7 +231,7 @@ MACHINE_START(ML509, "ml509")
 #endif
 #endif
 MACHINE_END
 MACHINE_END
 
 
-static const char *nsimosci_compat[] __initdata = {
+static const char *nsimosci_compat[] __initconst = {
 	"snps,nsimosci",
 	"snps,nsimosci",
 	NULL,
 	NULL,
 };
 };