diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-02-12 16:29:45 +0100 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2019-02-14 04:15:42 +0100 |
commit | 258f84fae3aced90613b44e69b123b87c693ccaf (patch) | |
tree | 208fd759cfe7eba3ea893b75085acbe885b3137e /drivers/scsi/lpfc/lpfc_debugfs.c | |
parent | scsi: qlogicpti: Use of_node_name_eq for node name comparisons (diff) | |
download | linux-258f84fae3aced90613b44e69b123b87c693ccaf.tar.xz linux-258f84fae3aced90613b44e69b123b87c693ccaf.zip |
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_debugfs.c')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_debugfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c index ee98ea1c68f9..1215eaa530db 100644 --- a/drivers/scsi/lpfc/lpfc_debugfs.c +++ b/drivers/scsi/lpfc/lpfc_debugfs.c @@ -1833,7 +1833,7 @@ lpfc_debugfs_disc_trc_open(struct inode *inode, struct file *file) int rc = -ENOMEM; if (!lpfc_debugfs_max_disc_trc) { - rc = -ENOSPC; + rc = -ENOSPC; goto out; } @@ -1883,7 +1883,7 @@ lpfc_debugfs_slow_ring_trc_open(struct inode *inode, struct file *file) int rc = -ENOMEM; if (!lpfc_debugfs_max_slow_ring_trc) { - rc = -ENOSPC; + rc = -ENOSPC; goto out; } |