diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-02-12 18:29:45 +0300 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2019-02-14 06:15:42 +0300 |
commit | 258f84fae3aced90613b44e69b123b87c693ccaf (patch) | |
tree | 208fd759cfe7eba3ea893b75085acbe885b3137e /drivers/scsi/lpfc/lpfc_sli.c | |
parent | 7f8e12f1e21524bd498477893b235e908843f1b7 (diff) | |
download | linux-258f84fae3aced90613b44e69b123b87c693ccaf.tar.xz |
scsi: lpfc: fix a handful of indentation issues
There are a handful of statements that are indented incorrectly. Fix these.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: James Smart <james.smart@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_sli.c')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_sli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c index c4c319245a66..62957d682d3f 100644 --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c @@ -1008,7 +1008,7 @@ lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp, if (!ndlp->active_rrqs_xri_bitmap) return 0; if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap)) - return 1; + return 1; else return 0; } |