Skip to content

Commit 0557f49

Browse files
ColinIanKingmartinkpetersen
authored andcommitted
scsi: mpt3sas: Remove trailing space after \n newline
There is a extraneous space after a newline in an ioc_info message. Remove it and join to split literal strings into one. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Martin K. Petersen <[email protected]>
1 parent c7c846f commit 0557f49

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

drivers/scsi/mpt3sas/mpt3sas_base.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8882,9 +8882,8 @@ _base_check_ioc_facts_changes(struct MPT3SAS_ADAPTER *ioc)
88828882
ioc->device_remove_in_progress, pd_handles_sz, GFP_KERNEL);
88838883
if (!device_remove_in_progress) {
88848884
ioc_info(ioc,
8885-
"Unable to allocate the memory for "
8886-
"device_remove_in_progress of sz: %d\n "
8887-
, pd_handles_sz);
8885+
"Unable to allocate the memory for device_remove_in_progress of sz: %d\n",
8886+
pd_handles_sz);
88888887
return -ENOMEM;
88898888
}
88908889
memset(device_remove_in_progress +

0 commit comments

Comments
 (0)