Re: [PATCH] drivers: mtd: ubi: fixed a semicolon style issue in block.c
From: Rahul Balaji <hidden>
Date: 2021-08-01 22:13:03
sorry for that slight misunderstanding. i thought the first patch meant only a small test patch for the first file. I will send the other changes shortly too. Thank you for your understanding. yours sincerely, Rahul. On Mon, Aug 2, 2021 at 2:10 AM Rahul Balaji [off-list ref] wrote:
respected mentor, I have sent the first patch only as per the task. please do give me your confirmation so that i can proceed further with the other patches too Thank you, sincerely, rahul. On Mon, Aug 2, 2021 at 2:06 AM Rahul Balaji [off-list ref] wrote:quoted
fixed a small coding style issue in using semicolon. signed-off-by: Rahul Balaji <redacted> --- drivers/mtd/ubi/block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c index e003b4b44ffa..e0402c2f8959 100644 --- a/drivers/mtd/ubi/block.c +++ b/drivers/mtd/ubi/block.c@@ -405,7 +405,7 @@ int ubiblock_create(struct ubi_volume_info *vi) ret = blk_mq_alloc_tag_set(&dev->tag_set); if (ret) { dev_err(disk_to_dev(dev->gd), "blk_mq_alloc_tag_setfailed"); - goto out_free_dev;; + goto out_free_dev; } -- 2.25.1