Re: [PATCH] staging: erofs: fix undeclared symbols

2018-09-20 Thread Gao Xiang
Hi Thomas, On 2018/9/21 2:58, Thomas Weißschuh wrote: > Move all internal symbols to the internal header file and add a missing > "static" declaration. > This fixes the sparse warnings like the following: > > drivers/staging/erofs/unzip_lz4.c:230:5: warning: symbol 'z_erofs_unzip_lz4' > was not

[PATCH] staging: erofs: fix undeclared symbols

2018-09-20 Thread Thomas Weißschuh
Move all internal symbols to the internal header file and add a missing "static" declaration. This fixes the sparse warnings like the following: drivers/staging/erofs/unzip_lz4.c:230:5: warning: symbol 'z_erofs_unzip_lz4' was not declared. Should it be static? Signed-off-by: Thomas Weißschuh --