diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-26 16:58:48 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-28 15:48:46 -0700 |
commit | 4154bb821f0bc63eab4de67f59058c5c2a718862 (patch) | |
tree | c6e6296a0689c4fe132bfd7aeed144b594ecb0ca /arch/sparc/kernel | |
parent | 03949b1cb9f1aa34379ad34d388668e40e79fb9b (diff) |
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 <linux/of.h> work with const
of_device_ids. So mark the const and __initconst.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel')
-rw-r--r-- | arch/sparc/kernel/leon_pci_grpci1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", }, |