diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-07-07 10:22:46 +0800 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-08-05 14:46:15 -0400 |
commit | daa7769641019e9a0da180170cc1cd1b8ebd1641 (patch) | |
tree | 5ad84d03c5d7e8ec2e98d77c98e07c195320475a | |
parent | b73210aec44ddf73ca856cbca2d25daeccf47025 (diff) | |
download | blackbird-op-linux-daa7769641019e9a0da180170cc1cd1b8ebd1641.tar.gz blackbird-op-linux-daa7769641019e9a0da180170cc1cd1b8ebd1641.zip |
platform-drivers-x86: intel_scu_ipc: convert to DEFINE_PCI_DEVICE_TABLE
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r-- | drivers/platform/x86/intel_scu_ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_scu_ipc.c b/drivers/platform/x86/intel_scu_ipc.c index 940accbe28d3..c86665369a22 100644 --- a/drivers/platform/x86/intel_scu_ipc.c +++ b/drivers/platform/x86/intel_scu_ipc.c @@ -725,7 +725,7 @@ static void ipc_remove(struct pci_dev *pdev) intel_scu_devices_destroy(); } -static const struct pci_device_id pci_ids[] = { +static DEFINE_PCI_DEVICE_TABLE(pci_ids) = { {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080e)}, {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x082a)}, { 0,} |