Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ed34b38 authored by Eyal Ilsar's avatar Eyal Ilsar Committed by Greg Kroah-Hartman
Browse files

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: default avatarEyal Ilsar <edilsar@gmail.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e42357d6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -284,10 +284,9 @@ 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)
{