diff options
author | Ben Collins <bcollins@ubuntu.com> | 2006-10-18 08:36:57 -0400 |
---|---|---|
committer | Ben Collins <bcollins@ubuntu.com> | 2006-10-18 08:36:57 -0400 |
commit | 745b5715fafccc8f0f992a7cccdd1eb2b1f5d23f (patch) | |
tree | 56456874e781c105ad22ef892c184308c1b77a7a | |
parent | 4596c75c23dde2623cbeec69357d5eb13d28387e (diff) | |
download | linux-stable-745b5715fafccc8f0f992a7cccdd1eb2b1f5d23f.tar.gz linux-stable-745b5715fafccc8f0f992a7cccdd1eb2b1f5d23f.tar.bz2 linux-stable-745b5715fafccc8f0f992a7cccdd1eb2b1f5d23f.zip |
[BusLogic] Add pci dev table for auto module loading.
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
-rw-r--r-- | drivers/scsi/BusLogic.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/scsi/BusLogic.c b/drivers/scsi/BusLogic.c index 7c59bba98798..cdd033724786 100644 --- a/drivers/scsi/BusLogic.c +++ b/drivers/scsi/BusLogic.c @@ -3600,5 +3600,16 @@ static void __exit BusLogic_exit(void) __setup("BusLogic=", BusLogic_Setup); +static struct pci_device_id BusLogic_pci_tbl[] __devinitdata = { + { PCI_VENDOR_ID_BUSLOGIC, PCI_DEVICE_ID_BUSLOGIC_MULTIMASTER, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, + { PCI_VENDOR_ID_BUSLOGIC, PCI_DEVICE_ID_BUSLOGIC_MULTIMASTER_NC, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, + { PCI_VENDOR_ID_BUSLOGIC, PCI_DEVICE_ID_BUSLOGIC_FLASHPOINT, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, + { } +}; +MODULE_DEVICE_TABLE(pci, BusLogic_pci_tbl); + module_init(BusLogic_init); module_exit(BusLogic_exit); |