aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/erofs/unzip_vle_lz4.c
diff options
context:
space:
mode:
authorPavel Zemlyanoy <zemlyanoy@ispras.ru>2018-08-30 18:14:01 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-09-10 10:09:26 +0200
commite4fccc8c9d0a7163017d5e88811632a4ecd59a5d (patch)
tree2c8cd02a57a82e4924c8cfc3aa8dcea55e905dd7 /drivers/staging/erofs/unzip_vle_lz4.c
parentstaging: erofs: formatting add spaces arround '*' (diff)
downloadlinux-dev-e4fccc8c9d0a7163017d5e88811632a4ecd59a5d.tar.xz
linux-dev-e4fccc8c9d0a7163017d5e88811632a4ecd59a5d.zip
staging: erofs: formatting alignment parenthesis
This patch does not change the logic, it only corrects the formatting and checkpatch check by alignment should match open parenthesis. The patch fixes 2 check of type: "Check: Alignment should match open parenthesis". Signed-off-by: Pavel Zemlyanoy <zemlyanoy@ispras.ru> Reviewed-by: Chao Yu <yuchao0@huawei.com> Reviewed-by: Gao Xiang <gaoxiang25@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/erofs/unzip_vle_lz4.c')
-rw-r--r--drivers/staging/erofs/unzip_vle_lz4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/erofs/unzip_vle_lz4.c b/drivers/staging/erofs/unzip_vle_lz4.c
index 7389500614e0..f285a50eab9a 100644
--- a/drivers/staging/erofs/unzip_vle_lz4.c
+++ b/drivers/staging/erofs/unzip_vle_lz4.c
@@ -126,7 +126,7 @@ int z_erofs_vle_unzip_fast_percpu(struct page **compressed_pages,
vout = erofs_pcpubuf[smp_processor_id()].data;
ret = z_erofs_unzip_lz4(vin, vout + pageofs,
- clusterpages * PAGE_SIZE, outlen);
+ clusterpages * PAGE_SIZE, outlen);
if (ret >= 0) {
outlen = ret;
@@ -191,7 +191,7 @@ int z_erofs_vle_unzip_vmap(struct page **compressed_pages,
}
ret = z_erofs_unzip_lz4(vin, vout + pageofs,
- clusterpages * PAGE_SIZE, llen);
+ clusterpages * PAGE_SIZE, llen);
if (ret > 0)
ret = 0;