Commit d7789430 authored by Jingoo Han's avatar Jingoo Han Committed by Bryan Wu

leds: leds-ss4200: use DEFINE_PCI_DEVICE_TABLE

This macro is used to create a struct pci_device_id array.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarBryan Wu <cooloney@gmail.com>
parent 962363ce
...@@ -63,8 +63,7 @@ MODULE_LICENSE("GPL"); ...@@ -63,8 +63,7 @@ MODULE_LICENSE("GPL");
/* /*
* PCI ID of the Intel ICH7 LPC Device within which the GPIO block lives. * PCI ID of the Intel ICH7 LPC Device within which the GPIO block lives.
*/ */
static const struct pci_device_id ich7_lpc_pci_id[] = static DEFINE_PCI_DEVICE_TABLE(ich7_lpc_pci_id) = {
{
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_0) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_0) },
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_1) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_1) },
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_30) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_30) },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment