diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2005-07-06 13:31:37 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-07-14 11:02:06 -0400 |
commit | 0107109ed69c9e04b6fa35ac41d870c74dcce3fc (patch) | |
tree | 4abc6e4e4b37a69bca4c863972af655dc92c78ea /drivers/scsi/qla2xxx/qla_gbl.h | |
parent | 9a853f71804d80e862362f6d0743d06955305752 (diff) |
[SCSI] qla2xxx: Add ISP24xx initialization routines.
Add ISP24xx initialization routines.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_gbl.h')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_gbl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_gbl.h b/drivers/scsi/qla2xxx/qla_gbl.h index d153d543a672..fcb42f56b5e2 100644 --- a/drivers/scsi/qla2xxx/qla_gbl.h +++ b/drivers/scsi/qla2xxx/qla_gbl.h | |||
@@ -35,13 +35,22 @@ extern int qla2x00_initialize_adapter(scsi_qla_host_t *); | |||
35 | 35 | ||
36 | extern int qla2100_pci_config(struct scsi_qla_host *); | 36 | extern int qla2100_pci_config(struct scsi_qla_host *); |
37 | extern int qla2300_pci_config(struct scsi_qla_host *); | 37 | extern int qla2300_pci_config(struct scsi_qla_host *); |
38 | extern int qla24xx_pci_config(scsi_qla_host_t *); | ||
38 | extern void qla2x00_reset_chip(struct scsi_qla_host *); | 39 | extern void qla2x00_reset_chip(struct scsi_qla_host *); |
40 | extern void qla24xx_reset_chip(struct scsi_qla_host *); | ||
39 | extern int qla2x00_chip_diag(struct scsi_qla_host *); | 41 | extern int qla2x00_chip_diag(struct scsi_qla_host *); |
42 | extern int qla24xx_chip_diag(struct scsi_qla_host *); | ||
40 | extern void qla2x00_config_rings(struct scsi_qla_host *); | 43 | extern void qla2x00_config_rings(struct scsi_qla_host *); |
44 | extern void qla24xx_config_rings(struct scsi_qla_host *); | ||
41 | extern void qla2x00_reset_adapter(struct scsi_qla_host *); | 45 | extern void qla2x00_reset_adapter(struct scsi_qla_host *); |
46 | extern void qla24xx_reset_adapter(struct scsi_qla_host *); | ||
42 | extern int qla2x00_nvram_config(struct scsi_qla_host *); | 47 | extern int qla2x00_nvram_config(struct scsi_qla_host *); |
48 | extern int qla24xx_nvram_config(struct scsi_qla_host *); | ||
43 | extern void qla2x00_update_fw_options(struct scsi_qla_host *); | 49 | extern void qla2x00_update_fw_options(struct scsi_qla_host *); |
50 | extern void qla24xx_update_fw_options(scsi_qla_host_t *); | ||
44 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); | 51 | extern int qla2x00_load_risc(struct scsi_qla_host *, uint32_t *); |
52 | extern int qla24xx_load_risc_flash(scsi_qla_host_t *, uint32_t *); | ||
53 | extern int qla24xx_load_risc_hotplug(scsi_qla_host_t *, uint32_t *); | ||
45 | 54 | ||
46 | extern fc_port_t *qla2x00_alloc_fcport(scsi_qla_host_t *, int); | 55 | extern fc_port_t *qla2x00_alloc_fcport(scsi_qla_host_t *, int); |
47 | 56 | ||