staging: rtl8192u: ieee80211: Use !x in place of NULL comparison

Change NULL comparison to Boolean negation.Issue found using Coccinelle

Semantic patch used to solve the problem is as follows:

@replace_rule@
expression e;
@@

- e == NULL
+ !e

Signed-off-by: Vatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Vatsala Narang 2019-03-29 00:39:43 +05:30 committed by Greg Kroah-Hartman
parent 4e1a0d1142
commit bdcca44e16

View File

@ -341,7 +341,7 @@ ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb,
struct rtl_80211_hdr_4addr *hdr; struct rtl_80211_hdr_4addr *hdr;
int res, hdrlen; int res, hdrlen;
if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL) if (!crypt || !crypt->ops->decrypt_mpdu)
return 0; return 0;
if (ieee->hwsec_active) if (ieee->hwsec_active)
{ {
@ -388,7 +388,7 @@ ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device *ieee, struct sk_buff *s
struct rtl_80211_hdr_4addr *hdr; struct rtl_80211_hdr_4addr *hdr;
int res, hdrlen; int res, hdrlen;
if (crypt == NULL || crypt->ops->decrypt_msdu == NULL) if (!crypt || !crypt->ops->decrypt_msdu)
return 0; return 0;
if (ieee->hwsec_active) if (ieee->hwsec_active)
{ {
@ -982,8 +982,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
/* allow NULL decrypt to indicate an station specific override /* allow NULL decrypt to indicate an station specific override
* for default encryption */ * for default encryption */
if (crypt && (crypt->ops == NULL || if (crypt && (!crypt->ops || !crypt->ops->decrypt_mpdu))
crypt->ops->decrypt_mpdu == NULL))
crypt = NULL; crypt = NULL;
if (!crypt && (fc & IEEE80211_FCTL_WEP)) { if (!crypt && (fc & IEEE80211_FCTL_WEP)) {
@ -1284,7 +1283,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
} }
//added by amy for reorder //added by amy for reorder
if (!ieee->pHTInfo->bCurRxReorderEnable || pTS == NULL){ if (!ieee->pHTInfo->bCurRxReorderEnable || !pTS) {
//added by amy for reorder //added by amy for reorder
for(i = 0; i<rxb->nr_subframes; i++) { for(i = 0; i<rxb->nr_subframes; i++) {
struct sk_buff *sub_skb = rxb->subframes[i]; struct sk_buff *sub_skb = rxb->subframes[i];
@ -1420,9 +1419,9 @@ static int ieee80211_read_qos_info_element(struct
int ret = 0; int ret = 0;
u16 size = sizeof(struct ieee80211_qos_information_element) - 2; u16 size = sizeof(struct ieee80211_qos_information_element) - 2;
if (element_info == NULL) if (!element_info)
return -1; return -1;
if (info_element == NULL) if (!info_element)
return -1; return -1;
if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) { if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {