[SCSI] qla2xxx: Silence bogus warning by gcc for wrap and did.
authorMike Waychison <mikew@google.com>
Tue, 4 May 2010 22:01:31 +0000 (15:01 -0700)
committerJames Bottomley <James.Bottomley@suse.de>
Sun, 16 May 2010 22:22:06 +0000 (18:22 -0400)
The qla2xxx driver uses a port_id_t to mark the start of its enumerations.  gcc
is complaining that wrap.b24 may be used uninitialized, but this doesn't look
to be possible.  Silence it.

Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/scsi/qla2xxx/qla_init.c

index e78089d..7fd1344 100644 (file)
@@ -3150,7 +3150,7 @@ qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha,
        sw_info_t       *swl;
        int             swl_idx;
        int             first_dev, last_dev;
-       port_id_t       wrap, nxt_d_id;
+       port_id_t       wrap = {}, nxt_d_id;
        struct qla_hw_data *ha = vha->hw;
        struct scsi_qla_host *vp, *base_vha = pci_get_drvdata(ha->pdev);
        struct scsi_qla_host *tvp;
@@ -3453,7 +3453,7 @@ qla2x00_device_resync(scsi_qla_host_t *vha)
        uint32_t rscn_entry;
        uint8_t rscn_out_iter;
        uint8_t format;
-       port_id_t d_id;
+       port_id_t d_id = {};
 
        rval = QLA_RSCNS_HANDLED;