lp = shost_priv(sc->device->host);
 
        fnic = lport_priv(lp);
-       FNIC_SCSI_DBG(KERN_DEBUG,
-                     fnic->lport->host,
-                     "Abort Cmd called FCID 0x%x, LUN 0x%x TAG %d\n",
-                     (starget_to_rport(scsi_target(sc->device)))->port_id,
-                     sc->device->lun, sc->request->tag);
+       rport = starget_to_rport(scsi_target(sc->device));
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+                       "Abort Cmd called FCID 0x%x, LUN 0x%x TAG %d\n",
+                       rport->port_id, sc->device->lun, sc->request->tag);
 
        if (lp->state != LPORT_ST_READY || !(lp->link_up)) {
                ret = FAILED;
         * port is up, then send abts to the remote port to terminate
         * the IO. Else, just locally terminate the IO in the firmware
         */
-       rport = starget_to_rport(scsi_target(sc->device));
        if (fc_remote_port_chkready(rport) == 0)
                task_req = FCPIO_ITMF_ABT_TASK;
        else
        unsigned long flags;
        int ret = 0;
        struct scsi_cmnd *sc;
-       struct fc_rport *rport;
        struct scsi_lun fc_lun;
        struct scsi_device *lun_dev = lr_sc->device;
        DECLARE_COMPLETION_ONSTACK(tm_done);
 
                /* Now queue the abort command to firmware */
                int_to_scsilun(sc->device->lun, &fc_lun);
-               rport = starget_to_rport(scsi_target(sc->device));
 
                if (fnic_queue_abort_io_req(fnic, tag,
                                            FCPIO_ITMF_ABT_TASK_TERM,
        lp = shost_priv(sc->device->host);
 
        fnic = lport_priv(lp);
-       FNIC_SCSI_DBG(KERN_DEBUG,
-                     fnic->lport->host,
-                     "Device reset called FCID 0x%x, LUN 0x%x\n",
-                     (starget_to_rport(scsi_target(sc->device)))->port_id,
-                     sc->device->lun);
 
+       rport = starget_to_rport(scsi_target(sc->device));
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+                       "Device reset called FCID 0x%x, LUN 0x%x\n",
+                       rport->port_id, sc->device->lun);
 
        if (lp->state != LPORT_ST_READY || !(lp->link_up))
                goto fnic_device_reset_end;
 
        /* Check if remote port up */
-       rport = starget_to_rport(scsi_target(sc->device));
        if (fc_remote_port_chkready(rport))
                goto fnic_device_reset_end;