[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201019191631.9604-1-trix@redhat.com>
Date: Mon, 19 Oct 2020 12:16:31 -0700
From: trix@...hat.com
To: miquel.raynal@...tlin.com, richard@....at, vigneshr@...com
Cc: linux-mtd@...ts.infradead.org, linux-kernel@...r.kernel.org,
Tom Rix <trix@...hat.com>
Subject: [PATCH] mtd: remove unneeded break
From: Tom Rix <trix@...hat.com>
A break is not needed if it is preceded by a return
Signed-off-by: Tom Rix <trix@...hat.com>
---
drivers/mtd/mtdchar.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index b40f46a43fc6..323035d4f2d0 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -881,7 +881,6 @@ static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
if (copy_from_user(&offs, argp, sizeof(loff_t)))
return -EFAULT;
return mtd_block_isbad(mtd, offs);
- break;
}
case MEMSETBADBLOCK:
@@ -891,7 +890,6 @@ static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
if (copy_from_user(&offs, argp, sizeof(loff_t)))
return -EFAULT;
return mtd_block_markbad(mtd, offs);
- break;
}
case OTPSELECT:
--
2.18.1
Powered by blists - more mailing lists