mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
ipack: Replace DEFINE_PCI_DEVICE_TABLE macro use
We should prefer `struct pci_device_id` over `DEFINE_PCI_DEVICE_TABLE` to meet kernel coding style guidelines. This issue was reported by checkpatch. Signed-off-by: Benoit Taine <benoit.taine@lip6.fr> Acked-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
389345cf6d
commit
7426d29ea1
@ -618,7 +618,7 @@ static void tpci200_pci_remove(struct pci_dev *dev)
|
||||
__tpci200_pci_remove(tpci200);
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(tpci200_idtable) = {
|
||||
static const struct pci_device_id tpci200_idtable[] = {
|
||||
{ TPCI200_VENDOR_ID, TPCI200_DEVICE_ID, TPCI200_SUBVENDOR_ID,
|
||||
TPCI200_SUBDEVICE_ID },
|
||||
{ 0, },
|
||||
|
Loading…
Reference in New Issue
Block a user