From: Alison Schofield Date: Sat, 24 Oct 2015 04:32:20 +0000 (-0700) Subject: staging: r8723au: replace explicit NULL comparisons with ! X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=48c9578c1c63515ce9e0bfb54b051dce5cfa3675;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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: Alison Schofield Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au/core/rtw_ap.c index a8463064b06f..0086d5a2f92b 100644 --- a/drivers/staging/rtl8723au/core/rtw_ap.c +++ b/drivers/staging/rtl8723au/core/rtw_ap.c @@ -658,10 +658,10 @@ 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, - WLAN_OUI_TYPE_MICROSOFT_WPS, - pnetwork->IEs, - pnetwork->IELength)) + if (!cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT, + WLAN_OUI_TYPE_MICROSOFT_WPS, + pnetwork->IEs, + pnetwork->IELength)) pmlmeext->bstart_bss = true; /* todo: update wmm, ht cap */