diff mbox series

[next,V2] scsi: mpt3sas: Remove trailing space after \n newline

Message ID 20240902172708.369741-1-colin.i.king@gmail.com
State Superseded
Headers show
Series [next,V2] scsi: mpt3sas: Remove trailing space after \n newline | expand

Commit Message

Colin Ian King Sept. 2, 2024, 5:27 p.m. UTC
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(-)

Comments

Martin K. Petersen Sept. 13, 2024, 12:30 a.m. UTC | #1
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 mbox series

Patch

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 +