From: Ben Collins Date: Wed, 18 Oct 2006 12:38:41 +0000 (-0400) Subject: [fdomain] Add pci dev table for module auto loading. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3985b977441f857404bb604a4b15911bbb0b9c5b;p=linux-beck.git [fdomain] Add pci dev table for module auto loading. Signed-off-by: Ben Collins --- diff --git a/drivers/scsi/fdomain.c b/drivers/scsi/fdomain.c index 72794a7b6dcc..65e6e7b7ba07 100644 --- a/drivers/scsi/fdomain.c +++ b/drivers/scsi/fdomain.c @@ -1736,6 +1736,15 @@ struct scsi_host_template fdomain_driver_template = { }; #ifndef PCMCIA + +static struct pci_device_id fdomain_pci_tbl[] __devinitdata = { + { PCI_VENDOR_ID_FD, PCI_DEVICE_ID_FD_36C70, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, + { } +}; +MODULE_DEVICE_TABLE(pci, fdomain_pci_tbl); + #define driver_template fdomain_driver_template #include "scsi_module.c" + #endif