Commit cb45c591 authored by Adam J. Richter's avatar Adam J. Richter Committed by James Bottomley

[PATCH] dmx3191d.c lacked MODULE_DEVICE_TABLE()

The MODULE_DEVICE_TABLE() declaration, which is used by boot and hot
plug facilities to load the module when the hardware is present was
missed in the PCI API conversion.
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent e2ee19f1
...@@ -146,6 +146,7 @@ static struct pci_device_id dmx3191d_pci_tbl[] = { ...@@ -146,6 +146,7 @@ static struct pci_device_id dmx3191d_pci_tbl[] = {
PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4}, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4},
{ } { }
}; };
MODULE_DEVICE_TABLE(pci, dmx3191d_pci_tbl);
static struct pci_driver dmx3191d_pci_driver = { static struct pci_driver dmx3191d_pci_driver = {
.name = DMX3191D_DRIVER_NAME, .name = DMX3191D_DRIVER_NAME,
......
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