mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
lib/decompressors: remove set but not used variabled 'level'
Fixes gcc '-Wunused-but-set-variable' warning:
lib/decompress_unlzo.c:46:5: warning: variable `level' set but
not used [-Wunused-but-set-variable]
It is never used and so can be removed.
[akpm@linux-foundation.org: warning: value computed is not used]
Link: https://lkml.kernel.org/r/20210514062050.3532344-1-yukuai3@huawei.com
Fixes: 7dd65feb6c
("lib: add support for LZO-compressed kernels")
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d892454b68
commit
3b52348345
1 changed files with 1 additions and 2 deletions
|
@ -43,7 +43,6 @@ STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len)
|
|||
int l;
|
||||
u8 *parse = input;
|
||||
u8 *end = input + in_len;
|
||||
u8 level = 0;
|
||||
u16 version;
|
||||
|
||||
/*
|
||||
|
@ -65,7 +64,7 @@ STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len)
|
|||
version = get_unaligned_be16(parse);
|
||||
parse += 7;
|
||||
if (version >= 0x0940)
|
||||
level = *parse++;
|
||||
parse++;
|
||||
if (get_unaligned_be32(parse) & HEADER_HAS_FILTER)
|
||||
parse += 8; /* flags + filter info */
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue