Commit 5191d771 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: fixes add spaces required around that '&&'



This patch fixes add to spaces around that '&&' or '||'.
Reported by checkpatch.pl for spaces required around that '&&' or '||' (ctx:VxE).

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 582f8a27
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1495,8 +1495,7 @@ void wl_wlan_cleanup(struct wilc *wilc)
	if (wilc && wilc->firmware)
		release_firmware(wilc->firmware);

	if (wilc&&
	   (wilc->vif[0].ndev || wilc->vif[1].ndev)) {
	if (wilc && (wilc->vif[0].ndev || wilc->vif[1].ndev)) {
		linux_wlan_lock_timeout(&close_exit_sync, 12 * 1000);

		for (i = 0; i < NUM_CONCURRENT_IFC; i++)