aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/ibmphp_ebda.c
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-08-03 19:20:17 -0400
committerBjorn Helgaas <bhelgaas@google.com>2017-08-10 16:21:42 -0400
commit8394264da2bc04a75d7d02071ae2ba6adbd46361 (patch)
treee1ddef0f09fa8ba690ded83ef8590a99d0a53bd2 /drivers/pci/hotplug/ibmphp_ebda.c
parent4bd3256c359d54643f9604fa267b292c006c266f (diff)
PCI: Constify hotplug pci_device_id structures
pci_device_id are not supposed to change at runtime. All functions working with pci_device_id provided by <linux/pci.h> work with const pci_device_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> [bhelgaas: squash shpchp, ibmphp, bmphp_ebda, cpcihp_zt5550, cpqphp] Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug/ibmphp_ebda.c')
-rw-r--r--drivers/pci/hotplug/ibmphp_ebda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/ibmphp_ebda.c b/drivers/pci/hotplug/ibmphp_ebda.c
index 43e345ac296b..a6a4dac798e5 100644
--- a/drivers/pci/hotplug/ibmphp_ebda.c
+++ b/drivers/pci/hotplug/ibmphp_ebda.c
@@ -1153,7 +1153,7 @@ void ibmphp_free_ebda_pci_rsrc_queue(void)
1153 } 1153 }
1154} 1154}
1155 1155
1156static struct pci_device_id id_table[] = { 1156static const struct pci_device_id id_table[] = {
1157 { 1157 {
1158 .vendor = PCI_VENDOR_ID_IBM, 1158 .vendor = PCI_VENDOR_ID_IBM,
1159 .device = HPC_DEVICE_ID, 1159 .device = HPC_DEVICE_ID,