Commit c0fb0459 authored by Sanjana Sanikommu's avatar Sanjana Sanikommu Committed by Greg Kroah-Hartman

staging: rtl8192u: ieee80211: ieee80211_rx.c: Fix NULL comparisions.

Replace NULL comparisons in the file.
Issue found by checkpatch.pl
Signed-off-by: default avatarSanjana Sanikommu <sanjana99reddy99@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 993798a5
...@@ -151,7 +151,7 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee, ...@@ -151,7 +151,7 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee,
* should have already been received */ * should have already been received */
entry = ieee80211_frag_cache_find(ieee, seq, frag, tid,hdr->addr2, entry = ieee80211_frag_cache_find(ieee, seq, frag, tid,hdr->addr2,
hdr->addr1); hdr->addr1);
if (entry != NULL) { if (entry) {
entry->last_frag = frag; entry->last_frag = frag;
skb = entry->skb; skb = entry->skb;
} }
...@@ -190,7 +190,7 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee, ...@@ -190,7 +190,7 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
entry = ieee80211_frag_cache_find(ieee, seq, -1, tid, hdr->addr2, entry = ieee80211_frag_cache_find(ieee, seq, -1, tid, hdr->addr2,
hdr->addr1); hdr->addr1);
if (entry == NULL) { if (!entry) {
IEEE80211_DEBUG_FRAG( IEEE80211_DEBUG_FRAG(
"could not invalidate fragment cache " "could not invalidate fragment cache "
"entry (seq=%u)\n", seq); "entry (seq=%u)\n", seq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment