From: Pavel Zemlyanoy Date: Thu, 30 Aug 2018 15:14:00 +0000 (+0300) Subject: staging: erofs: formatting add spaces arround '*' X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ea0b2d429bd82ec152d286a0c026ebcaa4154ccc;p=openwrt%2Fstaging%2Fblogic.git staging: erofs: formatting add spaces arround '*' This patch does not change the logic, it only corrects the formatting and checkpatch check by adding spaces around '*'. The patch fixes 1 check of type: "Check: spaces preferred around that '*'". Signed-off-by: Pavel Zemlyanoy Reviewed-by: Chao Yu Reviewed-by: Gao Xiang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/erofs/unzip_vle_lz4.c b/drivers/staging/erofs/unzip_vle_lz4.c index bf1f51cdf7dc..7389500614e0 100644 --- a/drivers/staging/erofs/unzip_vle_lz4.c +++ b/drivers/staging/erofs/unzip_vle_lz4.c @@ -181,7 +181,7 @@ int z_erofs_vle_unzip_vmap(struct page **compressed_pages, for (i = 0; i < clusterpages; ++i) { void *t = kmap_atomic(compressed_pages[i]); - memcpy(vin + PAGE_SIZE *i, t, PAGE_SIZE); + memcpy(vin + PAGE_SIZE * i, t, PAGE_SIZE); kunmap_atomic(t); } } else if (clusterpages == 1)