diff options
author | Gao Xiang <gaoxiang25@huawei.com> | 2018-08-06 11:27:53 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-08-08 11:21:14 +0200 |
commit | 3978c8e3237c9d09364501bcefdb8c40368421d9 (patch) | |
tree | 56813875e5a9df369e53ee78de613f56130691d5 /drivers/staging | |
parent | ec6e6925fc2adb98ef351d7c25a7e41caa4d5b77 (diff) | |
download | linux-3978c8e3237c9d09364501bcefdb8c40368421d9.tar.gz linux-3978c8e3237c9d09364501bcefdb8c40368421d9.tar.bz2 linux-3978c8e3237c9d09364501bcefdb8c40368421d9.zip |
staging: erofs: remove an extra semicolon in z_erofs_vle_unzip_all
There is an extra semicolon in z_erofs_vle_unzip_all, remove it.
Reported-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Gao Xiang <gaoxiang25@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/erofs/unzip_vle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/erofs/unzip_vle.c b/drivers/staging/erofs/unzip_vle.c index 45b1255f5a22..8721f0a41d15 100644 --- a/drivers/staging/erofs/unzip_vle.c +++ b/drivers/staging/erofs/unzip_vle.c @@ -1017,7 +1017,7 @@ static void z_erofs_vle_unzip_all(struct super_block *sb, owned = READ_ONCE(grp->next); z_erofs_vle_unzip(sb, grp, page_pool); - }; + } } static void z_erofs_vle_unzip_wq(struct work_struct *work) |