* [PATCH] spi: stm32-ospi: Remove unneeded semicolon
@ 2025-12-16 4:32 Chen Ni
2025-12-17 7:02 ` [Linux-stm32] " Patrice CHOTARD
2025-12-18 8:21 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Chen Ni @ 2025-12-16 4:32 UTC (permalink / raw)
To: broonie, mcoquelin.stm32, alexandre.torgue
Cc: linux-spi, linux-stm32, linux-arm-kernel, linux-kernel, Chen Ni
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
drivers/spi/spi-stm32-ospi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c
index c36df8d3f5cb..f396439e2281 100644
--- a/drivers/spi/spi-stm32-ospi.c
+++ b/drivers/spi/spi-stm32-ospi.c
@@ -150,7 +150,7 @@ static void stm32_ospi_read_fifo(void *val, void __iomem *addr, u8 len)
break;
case sizeof(u8):
*((u8 *)val) = readb_relaxed(addr);
- };
+ }
}
static void stm32_ospi_write_fifo(void *val, void __iomem *addr, u8 len)
@@ -164,7 +164,7 @@ static void stm32_ospi_write_fifo(void *val, void __iomem *addr, u8 len)
break;
case sizeof(u8):
writeb_relaxed(*((u8 *)val), addr);
- };
+ }
}
static int stm32_ospi_abort(struct stm32_ospi *ospi)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Linux-stm32] [PATCH] spi: stm32-ospi: Remove unneeded semicolon
2025-12-16 4:32 [PATCH] spi: stm32-ospi: Remove unneeded semicolon Chen Ni
@ 2025-12-17 7:02 ` Patrice CHOTARD
2025-12-18 8:21 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Patrice CHOTARD @ 2025-12-17 7:02 UTC (permalink / raw)
To: Chen Ni, broonie, mcoquelin.stm32, alexandre.torgue
Cc: linux-kernel, linux-stm32, linux-arm-kernel, linux-spi
On 12/16/25 05:32, Chen Ni wrote:
> Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
> semantic patch at scripts/coccinelle/misc/semicolon.cocci.
>
> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
> ---
> drivers/spi/spi-stm32-ospi.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c
> index c36df8d3f5cb..f396439e2281 100644
> --- a/drivers/spi/spi-stm32-ospi.c
> +++ b/drivers/spi/spi-stm32-ospi.c
> @@ -150,7 +150,7 @@ static void stm32_ospi_read_fifo(void *val, void __iomem *addr, u8 len)
> break;
> case sizeof(u8):
> *((u8 *)val) = readb_relaxed(addr);
> - };
> + }
> }
>
> static void stm32_ospi_write_fifo(void *val, void __iomem *addr, u8 len)
> @@ -164,7 +164,7 @@ static void stm32_ospi_write_fifo(void *val, void __iomem *addr, u8 len)
> break;
> case sizeof(u8):
> writeb_relaxed(*((u8 *)val), addr);
> - };
> + }
> }
>
> static int stm32_ospi_abort(struct stm32_ospi *ospi)
Hi Chen
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Thanks
Patrice
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: stm32-ospi: Remove unneeded semicolon
2025-12-16 4:32 [PATCH] spi: stm32-ospi: Remove unneeded semicolon Chen Ni
2025-12-17 7:02 ` [Linux-stm32] " Patrice CHOTARD
@ 2025-12-18 8:21 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2025-12-18 8:21 UTC (permalink / raw)
To: mcoquelin.stm32, alexandre.torgue, Chen Ni
Cc: linux-spi, linux-stm32, linux-arm-kernel, linux-kernel
On Tue, 16 Dec 2025 12:32:10 +0800, Chen Ni wrote:
> Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
> semantic patch at scripts/coccinelle/misc/semicolon.cocci.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/1] spi: stm32-ospi: Remove unneeded semicolon
commit: d8ce99b0d384830b0eb6b907f5a428309c70af82
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-18 8:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-16 4:32 [PATCH] spi: stm32-ospi: Remove unneeded semicolon Chen Ni
2025-12-17 7:02 ` [Linux-stm32] " Patrice CHOTARD
2025-12-18 8:21 ` Mark Brown
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®