Skip to content

Commit 831362f

Browse files
committed
scripts/kallsyms: remove redundant initializers
These are set to zero without the explicit initializers. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent d44270f commit 831362f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/kallsyms.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ static struct addr_range percpu_range = {
5757

5858
static struct sym_entry *table;
5959
static unsigned int table_size, table_cnt;
60-
static int all_symbols = 0;
61-
static int absolute_percpu = 0;
62-
static int base_relative = 0;
60+
static int all_symbols;
61+
static int absolute_percpu;
62+
static int base_relative;
6363

6464
static int token_profit[0x10000];
6565

0 commit comments

Comments
 (0)