Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cef340e6 authored by Benoit Taine's avatar Benoit Taine Committed by Rusty Russell
Browse files

virtio: 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: default avatarBenoit Taine <benoit.taine@lip6.fr>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 5885e48e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -91,7 +91,7 @@ struct virtio_pci_vq_info
};
};


/* Qumranet donated their vendor ID for devices 0x1000 thru 0x10FF. */
/* Qumranet donated their vendor ID for devices 0x1000 thru 0x10FF. */
static DEFINE_PCI_DEVICE_TABLE(virtio_pci_id_table) = {
static const struct pci_device_id virtio_pci_id_table[] = {
	{ PCI_DEVICE(0x1af4, PCI_ANY_ID) },
	{ PCI_DEVICE(0x1af4, PCI_ANY_ID) },
	{ 0 }
	{ 0 }
};
};