staging: wilc1000: Remove unnecessary braces {} around single statement block

Remove unnecessary braces {} around an 'if' statement block with a single
statement. Issue found by checkpatch.

Signed-off-by: Eyal Ilsar <edilsar@gmail.com>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Eyal Ilsar 2018-04-12 17:59:32 +10:00 committed by Greg Kroah-Hartman
parent e42357d6f3
commit 0ed34b3829
1 changed files with 1 additions and 2 deletions

View File

@ -284,9 +284,8 @@ static void remove_network_from_shadow(struct timer_list *unused)
}
}
if (last_scanned_cnt != 0) {
if (last_scanned_cnt != 0)
mod_timer(&hAgingTimer, jiffies + msecs_to_jiffies(AGING_TIME));
}
}
static void clear_duringIP(struct timer_list *unused)