From: Arvind Yadav Date: Sat, 26 Aug 2017 11:28:34 +0000 (+0530) Subject: sparc: leon: grpci2: constify of_device_id X-Git-Tag: v4.14-rc1~69^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=03949b1cb9f1aa34379ad34d388668e40e79fb9b;p=linux-2.6-block.git sparc: leon: grpci2: 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_grpci2.c b/arch/sparc/kernel/leon_pci_grpci2.c index f727c4de1316..ff0e5c90310f 100644 --- a/arch/sparc/kernel/leon_pci_grpci2.c +++ b/arch/sparc/kernel/leon_pci_grpci2.c @@ -886,7 +886,7 @@ err1: return err; } -static struct of_device_id grpci2_of_match[] = { +static const struct of_device_id grpci2_of_match[] __initconst = { { .name = "GAISLER_GRPCI2", },