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

Commit 48c9578c authored by Alison Schofield's avatar Alison Schofield Committed by Greg Kroah-Hartman
Browse files

staging: r8723au: replace explicit NULL comparisons with !



Replace explicit NULL comparison with ! operator to simplify code.

Addresses checkpatch.pl:
WARNING: Comparisons should place the constant on the right side of the
test

Signed-off-by: default avatarAlison Schofield <amsfield22@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e9cd7afa
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -658,7 +658,7 @@ static void start_bss_network(struct rtw_adapter *padapter, u8 *pbuf)
	 * and at first time the security
	 * ie (RSN/WPA IE) will not include in beacon
	 */
	if (NULL == cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
	if (!cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
				     WLAN_OUI_TYPE_MICROSOFT_WPS,
				     pnetwork->IEs,
				     pnetwork->IELength))