Skip to content

Commit

Permalink
scripts/kallsyms: remove redundant initializers
Browse files Browse the repository at this point in the history
These are set to zero without the explicit initializers.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y committed Nov 25, 2019
1 parent d44270f commit 831362f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/kallsyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ static struct addr_range percpu_range = {

static struct sym_entry *table;
static unsigned int table_size, table_cnt;
static int all_symbols = 0;
static int absolute_percpu = 0;
static int base_relative = 0;
static int all_symbols;
static int absolute_percpu;
static int base_relative;

static int token_profit[0x10000];

Expand Down

0 comments on commit 831362f

Please sign in to comment.