Commit ffd43814 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: lpfc: Fix indentation and balance braces

This patch avoid that smatch complains about misleading indentation.

Cc: James Smart <james.smart@broadcom.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Acked-by: default avatarJames Smart <james.smart@broadcom.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 3999df75
...@@ -907,10 +907,10 @@ lpfc_handle_rrq_active(struct lpfc_hba *phba) ...@@ -907,10 +907,10 @@ lpfc_handle_rrq_active(struct lpfc_hba *phba)
mod_timer(&phba->rrq_tmr, next_time); mod_timer(&phba->rrq_tmr, next_time);
list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) { list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
list_del(&rrq->list); list_del(&rrq->list);
if (!rrq->send_rrq) if (!rrq->send_rrq) {
/* this call will free the rrq */ /* this call will free the rrq */
lpfc_clr_rrq_active(phba, rrq->xritag, rrq); lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
else if (lpfc_send_rrq(phba, rrq)) { } else if (lpfc_send_rrq(phba, rrq)) {
/* if we send the rrq then the completion handler /* if we send the rrq then the completion handler
* will clear the bit in the xribitmap. * will clear the bit in the xribitmap.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment