Commit 18bff65e authored by Mischa Jonker's avatar Mischa Jonker Committed by Vineet Gupta

ARC: [arcfpga] Fix __initconst data const-correctness

Signed-off-by: default avatarMischa Jonker <mjonker@synopsys.com>
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent b098d672
......@@ -201,7 +201,7 @@ static void __init plat_fpga_populate_dev(void)
* callback set, by matching the DT compatible name.
*/
static const char *aa4_compat[] __initdata = {
static const char *aa4_compat[] __initconst = {
"snps,arc-angel4",
NULL,
};
......@@ -216,7 +216,7 @@ MACHINE_START(ANGEL4, "angel4")
#endif
MACHINE_END
static const char *ml509_compat[] __initdata = {
static const char *ml509_compat[] __initconst = {
"snps,arc-ml509",
NULL,
};
......@@ -231,7 +231,7 @@ MACHINE_START(ML509, "ml509")
#endif
MACHINE_END
static const char *nsimosci_compat[] __initdata = {
static const char *nsimosci_compat[] __initconst = {
"snps,nsimosci",
NULL,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment