diff mbox series

mtd: rawnand: Remove unneeded semicolon

Message ID 1574910852-51700-1-git-send-email-zhengbin13@huawei.com
State Accepted
Headers show
Series mtd: rawnand: Remove unneeded semicolon | expand

Commit Message

Zheng Bin Nov. 28, 2019, 3:14 a.m. UTC
Fixes coccicheck warning:

drivers/mtd/nand/raw/mpc5121_nfc.c:441:2-3: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: zhengbin <zhengbin13@huawei.com>
---
 drivers/mtd/nand/raw/mpc5121_nfc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.7.4

Comments

Miquel Raynal Jan. 14, 2020, 5:07 p.m. UTC | #1
On Thu, 2019-11-28 at 03:14:12 UTC, zhengbin wrote:
> Fixes coccicheck warning:
> 
> drivers/mtd/nand/raw/mpc5121_nfc.c:441:2-3: Unneeded semicolon
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: zhengbin <zhengbin13@huawei.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel
diff mbox series

Patch

diff --git a/drivers/mtd/nand/raw/mpc5121_nfc.c b/drivers/mtd/nand/raw/mpc5121_nfc.c
index 8b90def..a2fcb73 100644
--- a/drivers/mtd/nand/raw/mpc5121_nfc.c
+++ b/drivers/mtd/nand/raw/mpc5121_nfc.c
@@ -438,7 +438,7 @@  static void mpc5121_nfc_copy_spare(struct mtd_info *mtd, uint offset,
 		buffer += blksize;
 		offset += blksize;
 		size -= blksize;
-	};
+	}
 }

 /* Copy data from/to NFC main and spare buffers */