diff options
Diffstat (limited to 'drivers/scsi/qla1280.c')
-rw-r--r-- | drivers/scsi/qla1280.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c index 637fb6565d28..0878f95b5449 100644 --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c | |||
@@ -465,7 +465,7 @@ scsi_adjust_queue_depth(struct scsi_device *device, int tag, int depth) | |||
465 | } | 465 | } |
466 | device->queue_depth = depth; | 466 | device->queue_depth = depth; |
467 | } | 467 | } |
468 | static inline struct Scsi_Host *scsi_host_alloc(Scsi_Host_Template *t, size_t s) | 468 | static inline struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *t, size_t s) |
469 | { | 469 | { |
470 | return scsi_register(t, s); | 470 | return scsi_register(t, s); |
471 | } | 471 | } |
@@ -639,10 +639,8 @@ struct qla_boards { | |||
639 | static struct pci_device_id qla1280_pci_tbl[] = { | 639 | static struct pci_device_id qla1280_pci_tbl[] = { |
640 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP12160, | 640 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP12160, |
641 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 641 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
642 | #ifdef CONFIG_SCSI_QLOGIC_1280_1040 | ||
643 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1020, | 642 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1020, |
644 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, | 643 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, |
645 | #endif | ||
646 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1080, | 644 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1080, |
647 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, | 645 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, |
648 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1240, | 646 | {PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP1240, |
@@ -1177,7 +1175,7 @@ qla1280_biosparam(struct scsi_device *sdev, struct block_device *bdev, | |||
1177 | 1175 | ||
1178 | #if LINUX_VERSION_CODE < 0x020600 | 1176 | #if LINUX_VERSION_CODE < 0x020600 |
1179 | static int | 1177 | static int |
1180 | qla1280_detect(Scsi_Host_Template *template) | 1178 | qla1280_detect(struct scsi_host_template *template) |
1181 | { | 1179 | { |
1182 | struct pci_device_id *id = &qla1280_pci_tbl[0]; | 1180 | struct pci_device_id *id = &qla1280_pci_tbl[0]; |
1183 | struct pci_dev *pdev = NULL; | 1181 | struct pci_dev *pdev = NULL; |
@@ -4507,7 +4505,7 @@ static struct scsi_host_template qla1280_driver_template = { | |||
4507 | .use_clustering = ENABLE_CLUSTERING, | 4505 | .use_clustering = ENABLE_CLUSTERING, |
4508 | }; | 4506 | }; |
4509 | #else | 4507 | #else |
4510 | static Scsi_Host_Template qla1280_driver_template = { | 4508 | static struct scsi_host_template qla1280_driver_template = { |
4511 | .proc_name = "qla1280", | 4509 | .proc_name = "qla1280", |
4512 | .name = "Qlogic ISP 1280/12160", | 4510 | .name = "Qlogic ISP 1280/12160", |
4513 | .detect = qla1280_detect, | 4511 | .detect = qla1280_detect, |