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>
        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;
        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;