diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-26 16:58:34 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-28 15:48:46 -0700 |
commit | 03949b1cb9f1aa34379ad34d388668e40e79fb9b (patch) | |
tree | 0798a1b34e09106769f4d23c67dd3b07157d0f5a /arch/sparc | |
parent | c6b4ee9eba97b64750d5e8be31c04b70592592b7 (diff) | |
download | talos-op-linux-03949b1cb9f1aa34379ad34d388668e40e79fb9b.tar.gz talos-op-linux-03949b1cb9f1aa34379ad34d388668e40e79fb9b.zip |
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 <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')
-rw-r--r-- | arch/sparc/kernel/leon_pci_grpci2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", }, |