projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27ef523
)
ubi: block: Remove in vain semicolon
author
Li zeming
<zeming@nfschina.com>
Wed, 17 Aug 2022 01:14:06 +0000
(09:14 +0800)
committer
Richard Weinberger
<richard@nod.at>
Wed, 21 Sep 2022 09:11:10 +0000
(11:11 +0200)
Remove the repeated ';' from code, it is not
needed.
Signed-off-by: Li zeming <zeming@nfschina.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
[rw: Massaged commit message a bit]
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/ubi/block.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/ubi/block.c
b/drivers/mtd/ubi/block.c
index 4cf67a2a0d04b3064ef82f03b0f45a46972df0b7..4fc7e756d88581c9dc6aef0399381b8a5216697f 100644
(file)
--- a/
drivers/mtd/ubi/block.c
+++ b/
drivers/mtd/ubi/block.c
@@
-409,7
+409,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_set failed");
- goto out_free_dev;
;
+ goto out_free_dev;
}