mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 10:02:33 -04:00
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:
committed by
Greg Kroah-Hartman
parent
e42357d6f3
commit
0ed34b3829
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user