From 0f8a217670b6e3c28afff5cdf5985190633f62e1 Mon Sep 17 00:00:00 2001 From: Chen Ni Date: Mon, 2 Feb 2026 09:36:33 +0800 Subject: [PATCH] mtd: spinand: winbond: Remove unneeded semicolon Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Chen Ni Signed-off-by: Miquel Raynal --- drivers/mtd/nand/spi/winbond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/spi/winbond.c b/drivers/mtd/nand/spi/winbond.c index 8430ae307be0f..6dfd0dcc8ee7a 100644 --- a/drivers/mtd/nand/spi/winbond.c +++ b/drivers/mtd/nand/spi/winbond.c @@ -408,7 +408,7 @@ static int w35n0xjw_vcr_cfg(struct spinand_device *spinand, break; default: return -EOPNOTSUPP; - }; + } dummy_cycles = ((ref_op->dummy.nbytes * 8) / ref_op->dummy.buswidth) / (ref_op->dummy.dtr ? 2 : 1); -- 2.47.3