diff mbox series

scsi: lpfc: Clean up errors in lpfc_debugfs.c

Message ID 7f56629a.8a3.18ad9a1036f.Coremail.wangkailong@jari.cn
State New
Headers show
Series scsi: lpfc: Clean up errors in lpfc_debugfs.c | expand

Commit Message

KaiLong Wang Sept. 28, 2023, 2:32 a.m. UTC
Fix the following errors reported by checkpatch:

ERROR: else should follow close brace '}'
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: spaces required around that '<' (ctx:VxV)

Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
---
 drivers/scsi/lpfc/lpfc_debugfs.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c
index ea9b42225e62..fa037c70aa96 100644
--- a/drivers/scsi/lpfc/lpfc_debugfs.c
+++ b/drivers/scsi/lpfc/lpfc_debugfs.c
@@ -299,8 +299,7 @@  lpfc_debugfs_hbqinfo_data(struct lpfc_hba *phba, char *buf, int size)
 		 lpfc_debugfs_last_hbq++;
 		 if (lpfc_debugfs_last_hbq >= i)
 			lpfc_debugfs_last_hbq = 0;
-	}
-	else
+	} else
 		lpfc_debugfs_last_hbq = 0;
 
 	i = lpfc_debugfs_last_hbq;
@@ -326,7 +325,7 @@  lpfc_debugfs_hbqinfo_data(struct lpfc_hba *phba, char *buf, int size)
 		hbqs->next_hbqPutIdx, hbqs->local_hbqGetIdx, getidx);
 
 	hbqe = (struct lpfc_hbq_entry *) phba->hbqs[i].hbq_virt;
-	for (j=0; j<hbqs->entry_count; j++) {
+	for (j = 0; j < hbqs->entry_count; j++) {
 		len +=  scnprintf(buf+len, size-len,
 			"%03d: %08x %04x %05x ", j,
 			le32_to_cpu(hbqe->bde.addrLow),
@@ -343,8 +342,7 @@  lpfc_debugfs_hbqinfo_data(struct lpfc_hba *phba, char *buf, int size)
 						"Unused\n");
 				goto skipit;
 			}
-		}
-		else {
+		} else {
 			if ((j >= hbqs->hbqPutIdx) &&
 				(j < (hbqs->entry_count+low))) {
 				len +=  scnprintf(buf + len, size - len,