Commit 8cf0466a authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: core: Change NULL comparison to Boolean negation



Change NULL comparison to Boolean negation. Issue found with Coccinelle
using matchnull.cocci.

Signed-off-by: default avatarNishka Dasgupta <nishka.dasgupta@yahoo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a752d01c
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -782,12 +782,8 @@ void start_bss_network(struct adapter *padapter, u8 *pbuf)
	/* check if there is wps ie, */
	/* if there is wpsie in beacon, the hostapd will update beacon twice when stating hostapd, */
	/* and at first time the security ie (RSN/WPA IE) will not include in beacon. */
	if (NULL == rtw_get_wps_ie(
		pnetwork->IEs+_FIXED_IE_LENGTH_,
		pnetwork->IELength-_FIXED_IE_LENGTH_,
		NULL,
		NULL
	))
	if (!rtw_get_wps_ie(pnetwork->IEs+_FIXED_IE_LENGTH_,
			    pnetwork->IELength-_FIXED_IE_LENGTH_, NULL, NULL))
		pmlmeext->bstart_bss = true;

	/* todo: update wmm, ht cap */