diff options
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 2 | ||||
-rw-r--r-- | drivers/platform/x86/intel_scu_ipc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 18dcb58ba965..a0d1f576cf40 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c | |||
@@ -1478,7 +1478,7 @@ ips_link_to_i915_driver(void) | |||
1478 | } | 1478 | } |
1479 | EXPORT_SYMBOL_GPL(ips_link_to_i915_driver); | 1479 | EXPORT_SYMBOL_GPL(ips_link_to_i915_driver); |
1480 | 1480 | ||
1481 | static DEFINE_PCI_DEVICE_TABLE(ips_id_table) = { | 1481 | static const struct pci_device_id ips_id_table[] = { |
1482 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, | 1482 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, |
1483 | PCI_DEVICE_ID_INTEL_THERMAL_SENSOR), }, | 1483 | PCI_DEVICE_ID_INTEL_THERMAL_SENSOR), }, |
1484 | { 0, } | 1484 | { 0, } |
diff --git a/drivers/platform/x86/intel_scu_ipc.c b/drivers/platform/x86/intel_scu_ipc.c index 76ca094ed012..66a4d3284aab 100644 --- a/drivers/platform/x86/intel_scu_ipc.c +++ b/drivers/platform/x86/intel_scu_ipc.c | |||
@@ -640,7 +640,7 @@ static void ipc_remove(struct pci_dev *pdev) | |||
640 | intel_scu_devices_destroy(); | 640 | intel_scu_devices_destroy(); |
641 | } | 641 | } |
642 | 642 | ||
643 | static DEFINE_PCI_DEVICE_TABLE(pci_ids) = { | 643 | static const struct pci_device_id pci_ids[] = { |
644 | { | 644 | { |
645 | PCI_VDEVICE(INTEL, PCI_DEVICE_ID_LINCROFT), | 645 | PCI_VDEVICE(INTEL, PCI_DEVICE_ID_LINCROFT), |
646 | (kernel_ulong_t)&intel_scu_ipc_lincroft_pdata, | 646 | (kernel_ulong_t)&intel_scu_ipc_lincroft_pdata, |