Skip to content

Commit c7c846f

Browse files
ColinIanKingmartinkpetersen
authored andcommitted
scsi: lpfc: Remove trailing space after \n newline
There is a extraneous space after a newline in two lpfc_printf_log() messages. Remove the space. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Justin Tee <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent fa557da commit c7c846f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/scsi/lpfc/lpfc_sli.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8818,7 +8818,7 @@ lpfc_sli4_hba_setup(struct lpfc_hba *phba)
88188818
rc = lpfc_sli4_queue_setup(phba);
88198819
if (unlikely(rc)) {
88208820
lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8821-
"0381 Error %d during queue setup.\n ", rc);
8821+
"0381 Error %d during queue setup.\n", rc);
88228822
goto out_stop_timers;
88238823
}
88248824
/* Initialize the driver internal SLI layer lists. */
@@ -21149,7 +21149,7 @@ lpfc_drain_txq(struct lpfc_hba *phba)
2114921149
if (!piocbq) {
2115021150
spin_unlock_irqrestore(&pring->ring_lock, iflags);
2115121151
lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
21152-
"2823 txq empty and txq_cnt is %d\n ",
21152+
"2823 txq empty and txq_cnt is %d\n",
2115321153
txq_cnt);
2115421154
break;
2115521155
}

0 commit comments

Comments
 (0)