aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/ql2300.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-03-22 13:47:24 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-22 13:47:24 -0500
commit2152f8536668a957ea3214735b4761e7b22ef7d8 (patch)
tree56723fc51445b1bc930c6400d4c00fd6fc831f88 /drivers/scsi/qla2xxx/ql2300.c
parent7cae7e26f245151b9ccad868bf2edf8c8048d307 (diff)
parent30afc84cf7325e88fb9746340eba3c161080ff49 (diff)
Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (138 commits) [SCSI] libata: implement minimal transport template for ->eh_timed_out [SCSI] eliminate rphy allocation in favour of expander/end device allocation [SCSI] convert mptsas over to end_device/expander allocations [SCSI] allow displaying and setting of cache type via sysfs [SCSI] add scsi_mode_select to scsi_lib.c [SCSI] 3ware 9000 add big endian support [SCSI] qla2xxx: update MAINTAINERS [SCSI] scsi: move target_destroy call [SCSI] fusion - bump version [SCSI] fusion - expander hotplug suport in mptsas module [SCSI] fusion - exposing raid components in mptsas [SCSI] fusion - memory leak, and initializing fields [SCSI] fusion - exclosure misspelled [SCSI] fusion - cleanup mptsas event handling functions [SCSI] fusion - removing target_id/bus_id from the VirtDevice structure [SCSI] fusion - static fix's [SCSI] fusion - move some debug firmware event debug msgs to verbose level [SCSI] fusion - loginfo header update [SCSI] add scsi_reprobe_device [SCSI] megaraid_sas: fix extended timeout handling ...
Diffstat (limited to 'drivers/scsi/qla2xxx/ql2300.c')
-rw-r--r--drivers/scsi/qla2xxx/ql2300.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/ql2300.c b/drivers/scsi/qla2xxx/ql2300.c
index fd2f4b795a8a..e7a93ddda79a 100644
--- a/drivers/scsi/qla2xxx/ql2300.c
+++ b/drivers/scsi/qla2xxx/ql2300.c
@@ -40,6 +40,11 @@ static struct qla_board_info qla_board_tbl[] = {
40 .isp_name = "ISP2312", 40 .isp_name = "ISP2312",
41 .fw_info = qla_fw_tbl, 41 .fw_info = qla_fw_tbl,
42 }, 42 },
43 {
44 .drv_name = qla_driver_name,
45 .isp_name = "ISP6312",
46 .fw_info = qla_fw_tbl,
47 },
43}; 48};
44 49
45static struct pci_device_id qla2300_pci_tbl[] = { 50static struct pci_device_id qla2300_pci_tbl[] = {
@@ -57,6 +62,13 @@ static struct pci_device_id qla2300_pci_tbl[] = {
57 .subdevice = PCI_ANY_ID, 62 .subdevice = PCI_ANY_ID,
58 .driver_data = (unsigned long)&qla_board_tbl[1], 63 .driver_data = (unsigned long)&qla_board_tbl[1],
59 }, 64 },
65 {
66 .vendor = PCI_VENDOR_ID_QLOGIC,
67 .device = PCI_DEVICE_ID_QLOGIC_ISP6312,
68 .subvendor = PCI_ANY_ID,
69 .subdevice = PCI_ANY_ID,
70 .driver_data = (unsigned long)&qla_board_tbl[2],
71 },
60 {0, 0}, 72 {0, 0},
61}; 73};
62MODULE_DEVICE_TABLE(pci, qla2300_pci_tbl); 74MODULE_DEVICE_TABLE(pci, qla2300_pci_tbl);