Message ID | 20240902172708.369741-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0557f49870714c8c8cddfdc3c4b805aeae6c3e4e |
Headers | show |
Series | [next,V2] scsi: mpt3sas: Remove trailing space after \n newline | expand |
Colin, > There is a extraneous space after a newline in an ioc_info message. > Remove it and join to split literal strings into one. Applied to 6.12/scsi-staging, thanks!
diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.c b/drivers/scsi/mpt3sas/mpt3sas_base.c index 9a24f7776d64..ed5046593fda 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.c +++ b/drivers/scsi/mpt3sas/mpt3sas_base.c @@ -8898,9 +8898,8 @@ _base_check_ioc_facts_changes(struct MPT3SAS_ADAPTER *ioc) ioc->device_remove_in_progress, pd_handles_sz, GFP_KERNEL); if (!device_remove_in_progress) { ioc_info(ioc, - "Unable to allocate the memory for " - "device_remove_in_progress of sz: %d\n " - , pd_handles_sz); + "Unable to allocate the memory for device_remove_in_progress of sz: %d\n", + pd_handles_sz); return -ENOMEM; } memset(device_remove_in_progress +
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 <colin.i.king@gmail.com> --- V2: join split literal strings into one as noted by Christophe Jaillet --- drivers/scsi/mpt3sas/mpt3sas_base.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)