Browse Source

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>
Pavel Zemlyanoy 7 years ago
parent
commit
e4fccc8c9d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/staging/erofs/unzip_vle_lz4.c

+ 2 - 2
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;
 	vout = erofs_pcpubuf[smp_processor_id()].data;
 
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, outlen);
+				clusterpages * PAGE_SIZE, outlen);
 
 
 	if (ret >= 0) {
 	if (ret >= 0) {
 		outlen = ret;
 		outlen = ret;
@@ -191,7 +191,7 @@ int z_erofs_vle_unzip_vmap(struct page **compressed_pages,
 	}
 	}
 
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, llen);
+				clusterpages * PAGE_SIZE, llen);
 	if (ret > 0)
 	if (ret > 0)
 		ret = 0;
 		ret = 0;