diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-11-28 00:15:26 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-03 13:22:52 -0500 |
commit | 4e065b8bba731af296f963e0608e6ea7d98c044f (patch) | |
tree | cc5f55b6324feb94f0e50491f8e6dd5ee1cf7502 /drivers/usb/chipidea | |
parent | 46adcf3d82b44a4a9f147b2b898595d48873aa53 (diff) |
usb: chipidea: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro
is not preferred.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea')
-rw-r--r-- | drivers/usb/chipidea/ci_hdrc_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_pci.c b/drivers/usb/chipidea/ci_hdrc_pci.c index d514332ac081..241ae3444fde 100644 --- a/drivers/usb/chipidea/ci_hdrc_pci.c +++ b/drivers/usb/chipidea/ci_hdrc_pci.c | |||
@@ -112,7 +112,7 @@ static void ci_hdrc_pci_remove(struct pci_dev *pdev) | |||
112 | * | 112 | * |
113 | * Check "pci.h" for details | 113 | * Check "pci.h" for details |
114 | */ | 114 | */ |
115 | static DEFINE_PCI_DEVICE_TABLE(ci_hdrc_pci_id_table) = { | 115 | static const struct pci_device_id ci_hdrc_pci_id_table[] = { |
116 | { | 116 | { |
117 | PCI_DEVICE(0x153F, 0x1004), | 117 | PCI_DEVICE(0x153F, 0x1004), |
118 | .driver_data = (kernel_ulong_t)&pci_platdata, | 118 | .driver_data = (kernel_ulong_t)&pci_platdata, |