* [PATCH][next] scsi: pm8001: Remove trailing space after \n newline
@ 2024-09-02 14:15 Colin Ian King
2024-09-02 14:19 ` Jinpu Wang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Colin Ian King @ 2024-09-02 14:15 UTC (permalink / raw)
To: Jack Wang, James E . J . Bottomley, Martin K . Petersen, linux-scsi
Cc: kernel-janitors, linux-kernel
There is a extraneous space after a newline in a pm8001_dbg message.
Remove it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
drivers/scsi/pm8001/pm80xx_hwi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
index 8fe886dc5e47..a9869cd8c4c0 100644
--- a/drivers/scsi/pm8001/pm80xx_hwi.c
+++ b/drivers/scsi/pm8001/pm80xx_hwi.c
@@ -2037,7 +2037,7 @@ mpi_ssp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
atomic_dec(&pm8001_dev->running_req);
break;
}
- pm8001_dbg(pm8001_ha, IO, "scsi_status = 0x%x\n ",
+ pm8001_dbg(pm8001_ha, IO, "scsi_status = 0x%x\n",
psspPayload->ssp_resp_iu.status);
spin_lock_irqsave(&t->task_state_lock, flags);
t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
--
2.39.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] scsi: pm8001: Remove trailing space after \n newline
2024-09-02 14:15 [PATCH][next] scsi: pm8001: Remove trailing space after \n newline Colin Ian King
@ 2024-09-02 14:19 ` Jinpu Wang
2024-09-13 0:26 ` Martin K. Petersen
2024-09-19 15:52 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Jinpu Wang @ 2024-09-02 14:19 UTC (permalink / raw)
To: Colin Ian King
Cc: Jack Wang, James E . J . Bottomley, Martin K . Petersen,
linux-scsi, kernel-janitors, linux-kernel
On Mon, Sep 2, 2024 at 4:15 PM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a extraneous space after a newline in a pm8001_dbg message.
> Remove it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Jack Wang <jinpu.wang@ionos.com>
Thx
> ---
> drivers/scsi/pm8001/pm80xx_hwi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
> index 8fe886dc5e47..a9869cd8c4c0 100644
> --- a/drivers/scsi/pm8001/pm80xx_hwi.c
> +++ b/drivers/scsi/pm8001/pm80xx_hwi.c
> @@ -2037,7 +2037,7 @@ mpi_ssp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
> atomic_dec(&pm8001_dev->running_req);
> break;
> }
> - pm8001_dbg(pm8001_ha, IO, "scsi_status = 0x%x\n ",
> + pm8001_dbg(pm8001_ha, IO, "scsi_status = 0x%x\n",
> psspPayload->ssp_resp_iu.status);
> spin_lock_irqsave(&t->task_state_lock, flags);
> t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] scsi: pm8001: Remove trailing space after \n newline
2024-09-02 14:15 [PATCH][next] scsi: pm8001: Remove trailing space after \n newline Colin Ian King
2024-09-02 14:19 ` Jinpu Wang
@ 2024-09-13 0:26 ` Martin K. Petersen
2024-09-19 15:52 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2024-09-13 0:26 UTC (permalink / raw)
To: Colin Ian King
Cc: Jack Wang, James E . J . Bottomley, Martin K . Petersen,
linux-scsi, kernel-janitors, linux-kernel
Colin,
> There is a extraneous space after a newline in a pm8001_dbg message.
> Remove it.
Applied to 6.12/scsi-staging, thanks!
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] scsi: pm8001: Remove trailing space after \n newline
2024-09-02 14:15 [PATCH][next] scsi: pm8001: Remove trailing space after \n newline Colin Ian King
2024-09-02 14:19 ` Jinpu Wang
2024-09-13 0:26 ` Martin K. Petersen
@ 2024-09-19 15:52 ` Martin K. Petersen
2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2024-09-19 15:52 UTC (permalink / raw)
To: Jack Wang, James E . J . Bottomley, linux-scsi, Colin Ian King
Cc: Martin K . Petersen, kernel-janitors, linux-kernel
On Mon, 02 Sep 2024 15:15:37 +0100, Colin Ian King wrote:
> There is a extraneous space after a newline in a pm8001_dbg message.
> Remove it.
>
>
Applied to 6.12/scsi-queue, thanks!
[1/1] scsi: pm8001: Remove trailing space after \n newline
https://git.kernel.org/mkp/scsi/c/34f04a9b6e39
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-19 15:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-02 14:15 [PATCH][next] scsi: pm8001: Remove trailing space after \n newline Colin Ian King
2024-09-02 14:19 ` Jinpu Wang
2024-09-13 0:26 ` Martin K. Petersen
2024-09-19 15:52 ` Martin K. Petersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®