From: Arvind Yadav Date: Sat, 26 Aug 2017 11:28:48 +0000 (+0530) Subject: sparc: leon: grpci1: constify of_device_id X-Git-Tag: microblaze-4.14-rc3~72^2~3 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=4154bb821f0bc63eab4de67f59058c5c2a718862;p=linux-2.6-microblaze.git sparc: leon: grpci1: constify of_device_id of_device_id are not supposed to change at runtime. All functions working with of_device_id provided by work with const of_device_ids. So mark the const and __initconst. Signed-off-by: Arvind Yadav Signed-off-by: David S. Miller --- diff --git a/arch/sparc/kernel/leon_pci_grpci1.c b/arch/sparc/kernel/leon_pci_grpci1.c index 1e77128a8f88..83ba5005d44c 100644 --- a/arch/sparc/kernel/leon_pci_grpci1.c +++ b/arch/sparc/kernel/leon_pci_grpci1.c @@ -695,7 +695,7 @@ err1: return err; } -static struct of_device_id grpci1_of_match[] = { +static const struct of_device_id grpci1_of_match[] __initconst = { { .name = "GAISLER_PCIFBRG", },