Commit 7de2258b authored by Santha Meena Ramamoorthy's avatar Santha Meena Ramamoorthy Committed by Greg Kroah-Hartman

staging: rtl8188eu: replace NULL comparison with variable

Replace NULL comparison of the variable with the variable name or
!variable to conform to the Linux kernel coding style. Issue found using
checkpatch.
Signed-off-by: default avatarSantha Meena Ramamoorthy <santhameena13@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c41cd503
...@@ -577,7 +577,7 @@ u8 rtw_is_wps_ie(u8 *ie_ptr, uint *wps_ielen) ...@@ -577,7 +577,7 @@ u8 rtw_is_wps_ie(u8 *ie_ptr, uint *wps_ielen)
u8 match = false; u8 match = false;
u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04};
if (ie_ptr == NULL) if (!ie_ptr)
return match; return match;
eid = ie_ptr[0]; eid = ie_ptr[0];
...@@ -926,7 +926,7 @@ void rtw_macaddr_cfg(u8 *mac_addr) ...@@ -926,7 +926,7 @@ void rtw_macaddr_cfg(u8 *mac_addr)
{ {
u8 mac[ETH_ALEN]; u8 mac[ETH_ALEN];
if (mac_addr == NULL) if (!mac_addr)
return; return;
if (rtw_initmac && mac_pton(rtw_initmac, mac)) { if (rtw_initmac && mac_pton(rtw_initmac, mac)) {
......
...@@ -420,7 +420,7 @@ u8 rtw_set_802_11_bssid_list_scan(struct adapter *padapter, struct ndis_802_11_s ...@@ -420,7 +420,7 @@ u8 rtw_set_802_11_bssid_list_scan(struct adapter *padapter, struct ndis_802_11_s
RT_TRACE(_module_rtl871x_ioctl_set_c_, _drv_err_, ("+rtw_set_802_11_bssid_list_scan(), fw_state =%x\n", get_fwstate(pmlmepriv))); RT_TRACE(_module_rtl871x_ioctl_set_c_, _drv_err_, ("+rtw_set_802_11_bssid_list_scan(), fw_state =%x\n", get_fwstate(pmlmepriv)));
if (padapter == NULL) { if (!padapter) {
res = false; res = false;
goto exit; goto exit;
} }
......
...@@ -163,13 +163,13 @@ struct xmit_frame *alloc_mgtxmitframe(struct xmit_priv *pxmitpriv) ...@@ -163,13 +163,13 @@ struct xmit_frame *alloc_mgtxmitframe(struct xmit_priv *pxmitpriv)
struct xmit_buf *pxmitbuf; struct xmit_buf *pxmitbuf;
pmgntframe = rtw_alloc_xmitframe(pxmitpriv); pmgntframe = rtw_alloc_xmitframe(pxmitpriv);
if (pmgntframe == NULL) { if (!pmgntframe) {
DBG_88E("%s, alloc xmitframe fail\n", __func__); DBG_88E("%s, alloc xmitframe fail\n", __func__);
return NULL; return NULL;
} }
pxmitbuf = rtw_alloc_xmitbuf_ext(pxmitpriv); pxmitbuf = rtw_alloc_xmitbuf_ext(pxmitpriv);
if (pxmitbuf == NULL) { if (!pxmitbuf) {
DBG_88E("%s, alloc xmitbuf fail\n", __func__); DBG_88E("%s, alloc xmitbuf fail\n", __func__);
rtw_free_xmitframe(pxmitpriv, pmgntframe); rtw_free_xmitframe(pxmitpriv, pmgntframe);
return NULL; return NULL;
...@@ -332,7 +332,7 @@ static void issue_beacon(struct adapter *padapter, int timeout_ms) ...@@ -332,7 +332,7 @@ static void issue_beacon(struct adapter *padapter, int timeout_ms)
u8 bc_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; u8 bc_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) { if (!pmgntframe) {
DBG_88E("%s, alloc mgnt frame fail\n", __func__); DBG_88E("%s, alloc mgnt frame fail\n", __func__);
return; return;
} }
...@@ -478,7 +478,7 @@ static void issue_probersp(struct adapter *padapter, unsigned char *da) ...@@ -478,7 +478,7 @@ static void issue_probersp(struct adapter *padapter, unsigned char *da)
unsigned int rate_len; unsigned int rate_len;
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) { if (!pmgntframe) {
DBG_88E("%s, alloc mgnt frame fail\n", __func__); DBG_88E("%s, alloc mgnt frame fail\n", __func__);
return; return;
} }
...@@ -626,7 +626,7 @@ static int issue_probereq(struct adapter *padapter, ...@@ -626,7 +626,7 @@ static int issue_probereq(struct adapter *padapter,
RT_TRACE(_module_rtl871x_mlme_c_, _drv_notice_, ("+issue_probereq\n")); RT_TRACE(_module_rtl871x_mlme_c_, _drv_notice_, ("+issue_probereq\n"));
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
goto exit; goto exit;
/* update attribute */ /* update attribute */
...@@ -912,7 +912,7 @@ static void issue_asocrsp(struct adapter *padapter, unsigned short status, ...@@ -912,7 +912,7 @@ static void issue_asocrsp(struct adapter *padapter, unsigned short status,
DBG_88E("%s\n", __func__); DBG_88E("%s\n", __func__);
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
return; return;
/* update attribute */ /* update attribute */
...@@ -1039,7 +1039,7 @@ static void issue_assocreq(struct adapter *padapter) ...@@ -1039,7 +1039,7 @@ static void issue_assocreq(struct adapter *padapter)
struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network);
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
goto exit; goto exit;
/* update attribute */ /* update attribute */
...@@ -1133,7 +1133,7 @@ static void issue_assocreq(struct adapter *padapter) ...@@ -1133,7 +1133,7 @@ static void issue_assocreq(struct adapter *padapter)
/* RSN */ /* RSN */
p = rtw_get_ie((pmlmeinfo->network.IEs + sizeof(struct ndis_802_11_fixed_ie)), _RSN_IE_2_, &ie_len, (pmlmeinfo->network.IELength - sizeof(struct ndis_802_11_fixed_ie))); p = rtw_get_ie((pmlmeinfo->network.IEs + sizeof(struct ndis_802_11_fixed_ie)), _RSN_IE_2_, &ie_len, (pmlmeinfo->network.IELength - sizeof(struct ndis_802_11_fixed_ie)));
if (p != NULL) if (p)
pframe = rtw_set_ie(pframe, _RSN_IE_2_, ie_len, (p + 2), &(pattrib->pktlen)); pframe = rtw_set_ie(pframe, _RSN_IE_2_, ie_len, (p + 2), &(pattrib->pktlen));
/* HT caps */ /* HT caps */
...@@ -1221,7 +1221,7 @@ static int _issue_nulldata(struct adapter *padapter, unsigned char *da, ...@@ -1221,7 +1221,7 @@ static int _issue_nulldata(struct adapter *padapter, unsigned char *da,
pnetwork = &(pmlmeinfo->network); pnetwork = &(pmlmeinfo->network);
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
goto exit; goto exit;
/* update attribute */ /* update attribute */
...@@ -1338,7 +1338,7 @@ static int _issue_qos_nulldata(struct adapter *padapter, unsigned char *da, ...@@ -1338,7 +1338,7 @@ static int _issue_qos_nulldata(struct adapter *padapter, unsigned char *da,
DBG_88E("%s\n", __func__); DBG_88E("%s\n", __func__);
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
goto exit; goto exit;
/* update attribute */ /* update attribute */
...@@ -1584,7 +1584,7 @@ static void issue_action_BA(struct adapter *padapter, unsigned char *raddr, ...@@ -1584,7 +1584,7 @@ static void issue_action_BA(struct adapter *padapter, unsigned char *raddr,
DBG_88E("%s, category=%d, action=%d, status=%d\n", __func__, category, action, status); DBG_88E("%s, category=%d, action=%d, status=%d\n", __func__, category, action, status);
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
return; return;
/* update attribute */ /* update attribute */
...@@ -1632,7 +1632,7 @@ static void issue_action_BA(struct adapter *padapter, unsigned char *raddr, ...@@ -1632,7 +1632,7 @@ static void issue_action_BA(struct adapter *padapter, unsigned char *raddr,
&pattrib->pktlen); &pattrib->pktlen);
psta = rtw_get_stainfo(pstapriv, raddr); psta = rtw_get_stainfo(pstapriv, raddr);
if (psta != NULL) { if (psta) {
start_seq = (psta->sta_xmitpriv.txseq_tid[status & 0x07]&0xfff) + 1; start_seq = (psta->sta_xmitpriv.txseq_tid[status & 0x07]&0xfff) + 1;
DBG_88E("BA_starting_seqctrl=%d for TID=%d\n", start_seq, status & 0x07); DBG_88E("BA_starting_seqctrl=%d for TID=%d\n", start_seq, status & 0x07);
...@@ -1743,7 +1743,7 @@ static void issue_action_BSSCoexistPacket(struct adapter *padapter) ...@@ -1743,7 +1743,7 @@ static void issue_action_BSSCoexistPacket(struct adapter *padapter)
action = ACT_PUBLIC_BSSCOEXIST; action = ACT_PUBLIC_BSSCOEXIST;
pmgntframe = alloc_mgtxmitframe(pxmitpriv); pmgntframe = alloc_mgtxmitframe(pxmitpriv);
if (pmgntframe == NULL) if (!pmgntframe)
return; return;
/* update attribute */ /* update attribute */
...@@ -2091,7 +2091,7 @@ static u8 collect_bss_info(struct adapter *padapter, ...@@ -2091,7 +2091,7 @@ static u8 collect_bss_info(struct adapter *padapter,
/* checking SSID */ /* checking SSID */
p = rtw_get_ie(bssid->IEs + ie_offset, _SSID_IE_, &len, bssid->IELength - ie_offset); p = rtw_get_ie(bssid->IEs + ie_offset, _SSID_IE_, &len, bssid->IELength - ie_offset);
if (p == NULL) { if (!p) {
DBG_88E("marc: cannot find SSID for survey event\n"); DBG_88E("marc: cannot find SSID for survey event\n");
return _FAIL; return _FAIL;
} }
...@@ -2122,7 +2122,7 @@ static u8 collect_bss_info(struct adapter *padapter, ...@@ -2122,7 +2122,7 @@ static u8 collect_bss_info(struct adapter *padapter,
} }
p = rtw_get_ie(bssid->IEs + ie_offset, _EXT_SUPPORTEDRATES_IE_, &len, bssid->IELength - ie_offset); p = rtw_get_ie(bssid->IEs + ie_offset, _EXT_SUPPORTEDRATES_IE_, &len, bssid->IELength - ie_offset);
if (p != NULL) { if (p) {
if (len > (NDIS_802_11_LENGTH_RATES_EX-i)) { if (len > (NDIS_802_11_LENGTH_RATES_EX-i)) {
DBG_88E("%s()-%d: IE too long (%d) for survey event\n", __func__, __LINE__, len); DBG_88E("%s()-%d: IE too long (%d) for survey event\n", __func__, __LINE__, len);
return _FAIL; return _FAIL;
...@@ -2568,7 +2568,7 @@ static unsigned int OnProbeReq(struct adapter *padapter, ...@@ -2568,7 +2568,7 @@ static unsigned int OnProbeReq(struct adapter *padapter,
len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_); len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_);
/* check (wildcard) SSID */ /* check (wildcard) SSID */
if (p != NULL) { if (p) {
if ((ielen != 0 && memcmp((void *)(p+2), (void *)cur->Ssid.Ssid, cur->Ssid.SsidLength)) || if ((ielen != 0 && memcmp((void *)(p+2), (void *)cur->Ssid.Ssid, cur->Ssid.SsidLength)) ||
(ielen == 0 && pmlmeinfo->hidden_ssid_mode)) (ielen == 0 && pmlmeinfo->hidden_ssid_mode))
return _SUCCESS; return _SUCCESS;
...@@ -2735,11 +2735,11 @@ static unsigned int OnAuth(struct adapter *padapter, ...@@ -2735,11 +2735,11 @@ static unsigned int OnAuth(struct adapter *padapter,
} }
pstat = rtw_get_stainfo(pstapriv, sa); pstat = rtw_get_stainfo(pstapriv, sa);
if (pstat == NULL) { if (!pstat) {
/* allocate a new one */ /* allocate a new one */
DBG_88E("going to alloc stainfo for sa=%pM\n", sa); DBG_88E("going to alloc stainfo for sa=%pM\n", sa);
pstat = rtw_alloc_stainfo(pstapriv, sa); pstat = rtw_alloc_stainfo(pstapriv, sa);
if (pstat == NULL) { if (!pstat) {
DBG_88E(" Exceed the upper limit of supported clients...\n"); DBG_88E(" Exceed the upper limit of supported clients...\n");
status = _STATS_UNABLE_HANDLE_STA_; status = _STATS_UNABLE_HANDLE_STA_;
goto auth_fail; goto auth_fail;
...@@ -2973,7 +2973,7 @@ static unsigned int OnAssocReq(struct adapter *padapter, ...@@ -2973,7 +2973,7 @@ static unsigned int OnAssocReq(struct adapter *padapter,
} }
pstat = rtw_get_stainfo(pstapriv, GetAddr2Ptr(pframe)); pstat = rtw_get_stainfo(pstapriv, GetAddr2Ptr(pframe));
if (pstat == NULL) { if (!pstat) {
status = _RSON_CLS2_; status = _RSON_CLS2_;
goto asoc_class2_error; goto asoc_class2_error;
} }
...@@ -3014,7 +3014,7 @@ static unsigned int OnAssocReq(struct adapter *padapter, ...@@ -3014,7 +3014,7 @@ static unsigned int OnAssocReq(struct adapter *padapter,
/* checking SSID */ /* checking SSID */
p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + ie_offset, _SSID_IE_, &ie_len, p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + ie_offset, _SSID_IE_, &ie_len,
pkt_len - WLAN_HDR_A3_LEN - ie_offset); pkt_len - WLAN_HDR_A3_LEN - ie_offset);
if (p == NULL) if (!p)
status = _STATS_FAILURE_; status = _STATS_FAILURE_;
if (ie_len == 0) { /* broadcast ssid, however it is not allowed in assocreq */ if (ie_len == 0) { /* broadcast ssid, however it is not allowed in assocreq */
...@@ -3122,7 +3122,7 @@ static unsigned int OnAssocReq(struct adapter *padapter, ...@@ -3122,7 +3122,7 @@ static unsigned int OnAssocReq(struct adapter *padapter,
goto OnAssocReqFail; goto OnAssocReqFail;
pstat->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS); pstat->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
if (wpa_ie == NULL) { if (!wpa_ie) {
if (elems.wps_ie) { if (elems.wps_ie) {
DBG_88E("STA included WPS IE in " DBG_88E("STA included WPS IE in "
"(Re)Association Request - assume WPS is " "(Re)Association Request - assume WPS is "
...@@ -3653,7 +3653,7 @@ static unsigned int OnAction_back(struct adapter *padapter, ...@@ -3653,7 +3653,7 @@ static unsigned int OnAction_back(struct adapter *padapter,
addr = GetAddr2Ptr(pframe); addr = GetAddr2Ptr(pframe);
psta = rtw_get_stainfo(pstapriv, addr); psta = rtw_get_stainfo(pstapriv, addr);
if (psta == NULL) if (!psta)
return _SUCCESS; return _SUCCESS;
frame_body = (unsigned char *)(pframe + sizeof(struct ieee80211_hdr_3addr)); frame_body = (unsigned char *)(pframe + sizeof(struct ieee80211_hdr_3addr));
...@@ -4170,7 +4170,7 @@ void mgt_dispatcher(struct adapter *padapter, struct recv_frame *precv_frame) ...@@ -4170,7 +4170,7 @@ void mgt_dispatcher(struct adapter *padapter, struct recv_frame *precv_frame)
} }
ptable += index; ptable += index;
if (psta != NULL) { if (psta) {
if (GetRetry(pframe)) { if (GetRetry(pframe)) {
if (precv_frame->attrib.seq_num == if (precv_frame->attrib.seq_num ==
psta->RxMgmtFrameSeqNum) { psta->RxMgmtFrameSeqNum) {
...@@ -4702,7 +4702,7 @@ void linked_status_chk(struct adapter *padapter) ...@@ -4702,7 +4702,7 @@ void linked_status_chk(struct adapter *padapter)
rx_chk_limit = 4; rx_chk_limit = 4;
psta = rtw_get_stainfo(pstapriv, pmlmeinfo->network.MacAddress); psta = rtw_get_stainfo(pstapriv, pmlmeinfo->network.MacAddress);
if (psta != NULL) { if (psta) {
bool is_p2p_enable = false; bool is_p2p_enable = false;
if (!chk_ap_is_alive(padapter, psta)) if (!chk_ap_is_alive(padapter, psta))
...@@ -4782,7 +4782,7 @@ void linked_status_chk(struct adapter *padapter) ...@@ -4782,7 +4782,7 @@ void linked_status_chk(struct adapter *padapter)
if (pmlmeinfo->FW_sta_info[i].status == 1) { if (pmlmeinfo->FW_sta_info[i].status == 1) {
psta = pmlmeinfo->FW_sta_info[i].psta; psta = pmlmeinfo->FW_sta_info[i].psta;
if (psta == NULL) if (!psta)
continue; continue;
if (pmlmeinfo->FW_sta_info[i].rx_pkt == sta_rx_pkts(psta)) { if (pmlmeinfo->FW_sta_info[i].rx_pkt == sta_rx_pkts(psta)) {
if (pmlmeinfo->FW_sta_info[i].retry < 3) { if (pmlmeinfo->FW_sta_info[i].retry < 3) {
......
...@@ -244,7 +244,7 @@ static int recvframe_chkmic(struct adapter *adapter, ...@@ -244,7 +244,7 @@ static int recvframe_chkmic(struct adapter *adapter,
prxattrib->ra[3], prxattrib->ra[4], prxattrib->ra[5])); prxattrib->ra[3], prxattrib->ra[4], prxattrib->ra[5]));
/* calculate mic code */ /* calculate mic code */
if (stainfo != NULL) { if (stainfo) {
if (IS_MCAST(prxattrib->ra)) { if (IS_MCAST(prxattrib->ra)) {
if (!psecuritypriv) { if (!psecuritypriv) {
res = _FAIL; res = _FAIL;
...@@ -1012,7 +1012,7 @@ static int validate_recv_mgnt_frame(struct adapter *padapter, ...@@ -1012,7 +1012,7 @@ static int validate_recv_mgnt_frame(struct adapter *padapter,
RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, ("+validate_recv_mgnt_frame\n")); RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, ("+validate_recv_mgnt_frame\n"));
precv_frame = recvframe_chk_defrag(padapter, precv_frame); precv_frame = recvframe_chk_defrag(padapter, precv_frame);
if (precv_frame == NULL) { if (!precv_frame) {
RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_, RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_,
("%s: fragment packet\n", __func__)); ("%s: fragment packet\n", __func__));
return _SUCCESS; return _SUCCESS;
...@@ -1060,7 +1060,7 @@ static int validate_recv_data_frame(struct adapter *adapter, ...@@ -1060,7 +1060,7 @@ static int validate_recv_data_frame(struct adapter *adapter,
psa = get_sa(ptr); psa = get_sa(ptr);
pbssid = get_hdr_bssid(ptr); pbssid = get_hdr_bssid(ptr);
if (pbssid == NULL) { if (!pbssid) {
ret = _FAIL; ret = _FAIL;
goto exit; goto exit;
} }
...@@ -1102,7 +1102,7 @@ static int validate_recv_data_frame(struct adapter *adapter, ...@@ -1102,7 +1102,7 @@ static int validate_recv_data_frame(struct adapter *adapter,
else if (ret == RTW_RX_HANDLED) else if (ret == RTW_RX_HANDLED)
goto exit; goto exit;
if (psta == NULL) { if (!psta) {
RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, (" after to_fr_ds_chk; psta==NULL\n")); RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, (" after to_fr_ds_chk; psta==NULL\n"));
ret = _FAIL; ret = _FAIL;
goto exit; goto exit;
...@@ -1436,7 +1436,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter, ...@@ -1436,7 +1436,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter,
psta_addr = pfhdr->attrib.ta; psta_addr = pfhdr->attrib.ta;
psta = rtw_get_stainfo(pstapriv, psta_addr); psta = rtw_get_stainfo(pstapriv, psta_addr);
if (psta == NULL) { if (!psta) {
u8 type = GetFrameType(pfhdr->pkt->data); u8 type = GetFrameType(pfhdr->pkt->data);
if (type != WIFI_DATA_TYPE) { if (type != WIFI_DATA_TYPE) {
...@@ -1455,7 +1455,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter, ...@@ -1455,7 +1455,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter,
if (ismfrag == 1) { if (ismfrag == 1) {
/* 0~(n-1) fragment frame */ /* 0~(n-1) fragment frame */
/* enqueue to defraf_g */ /* enqueue to defraf_g */
if (pdefrag_q != NULL) { if (pdefrag_q) {
if (fragnum == 0) { if (fragnum == 0) {
/* the first fragment */ /* the first fragment */
if (!list_empty(&pdefrag_q->queue)) if (!list_empty(&pdefrag_q->queue))
...@@ -1482,7 +1482,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter, ...@@ -1482,7 +1482,7 @@ struct recv_frame *recvframe_chk_defrag(struct adapter *padapter,
if ((ismfrag == 0) && (fragnum != 0)) { if ((ismfrag == 0) && (fragnum != 0)) {
/* the last fragment frame */ /* the last fragment frame */
/* enqueue the last fragment */ /* enqueue the last fragment */
if (pdefrag_q != NULL) { if (pdefrag_q) {
phead = get_list_head(pdefrag_q); phead = get_list_head(pdefrag_q);
list_add_tail(&pfhdr->list, phead); list_add_tail(&pfhdr->list, phead);
...@@ -1928,20 +1928,20 @@ static int recv_func_posthandle(struct adapter *padapter, ...@@ -1928,20 +1928,20 @@ static int recv_func_posthandle(struct adapter *padapter,
LedControl8188eu(padapter, LED_CTL_RX); LedControl8188eu(padapter, LED_CTL_RX);
prframe = decryptor(padapter, prframe); prframe = decryptor(padapter, prframe);
if (prframe == NULL) { if (!prframe) {
RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("decryptor: drop pkt\n")); RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("decryptor: drop pkt\n"));
ret = _FAIL; ret = _FAIL;
goto _recv_data_drop; goto _recv_data_drop;
} }
prframe = recvframe_chk_defrag(padapter, prframe); prframe = recvframe_chk_defrag(padapter, prframe);
if (prframe == NULL) { if (!prframe) {
RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("recvframe_chk_defrag: drop pkt\n")); RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("recvframe_chk_defrag: drop pkt\n"));
goto _recv_data_drop; goto _recv_data_drop;
} }
prframe = portctrl(padapter, prframe); prframe = portctrl(padapter, prframe);
if (prframe == NULL) { if (!prframe) {
RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("portctrl: drop pkt\n")); RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("portctrl: drop pkt\n"));
ret = _FAIL; ret = _FAIL;
goto _recv_data_drop; goto _recv_data_drop;
......
...@@ -674,7 +674,7 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, u8 *precvframe) ...@@ -674,7 +674,7 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, u8 *precvframe)
/* 4 start to decrypt recvframe */ /* 4 start to decrypt recvframe */
if (prxattrib->encrypt == _TKIP_) { if (prxattrib->encrypt == _TKIP_) {
stainfo = rtw_get_stainfo(&padapter->stapriv, &prxattrib->ta[0]); stainfo = rtw_get_stainfo(&padapter->stapriv, &prxattrib->ta[0]);
if (stainfo != NULL) { if (stainfo) {
if (IS_MCAST(prxattrib->ra)) { if (IS_MCAST(prxattrib->ra)) {
if (!psecuritypriv->binstallGrpkey) { if (!psecuritypriv->binstallGrpkey) {
res = _FAIL; res = _FAIL;
...@@ -1245,7 +1245,7 @@ u32 rtw_aes_encrypt(struct adapter *padapter, u8 *pxmitframe) ...@@ -1245,7 +1245,7 @@ u32 rtw_aes_encrypt(struct adapter *padapter, u8 *pxmitframe)
else else
stainfo = rtw_get_stainfo(&padapter->stapriv, &pattrib->ra[0]); stainfo = rtw_get_stainfo(&padapter->stapriv, &pattrib->ra[0]);
if (stainfo != NULL) { if (stainfo) {
RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("rtw_aes_encrypt: stainfo!= NULL!!!\n")); RT_TRACE(_module_rtl871x_security_c_, _drv_err_, ("rtw_aes_encrypt: stainfo!= NULL!!!\n"));
if (IS_MCAST(pattrib->ra)) if (IS_MCAST(pattrib->ra))
......
...@@ -715,7 +715,7 @@ void HT_caps_handler(struct adapter *padapter, struct ndis_802_11_var_ie *pIE) ...@@ -715,7 +715,7 @@ void HT_caps_handler(struct adapter *padapter, struct ndis_802_11_var_ie *pIE)
struct ht_priv *phtpriv = &pmlmepriv->htpriv; struct ht_priv *phtpriv = &pmlmepriv->htpriv;
u8 *HT_cap = (u8 *)(&pmlmeinfo->HT_caps); u8 *HT_cap = (u8 *)(&pmlmeinfo->HT_caps);
if (pIE == NULL) if (!pIE)
return; return;
if (!phtpriv->ht_option) if (!phtpriv->ht_option)
...@@ -755,7 +755,7 @@ void HT_info_handler(struct adapter *padapter, struct ndis_802_11_var_ie *pIE) ...@@ -755,7 +755,7 @@ void HT_info_handler(struct adapter *padapter, struct ndis_802_11_var_ie *pIE)
struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
struct ht_priv *phtpriv = &pmlmepriv->htpriv; struct ht_priv *phtpriv = &pmlmepriv->htpriv;
if (pIE == NULL) if (!pIE)
return; return;
if (!phtpriv->ht_option) if (!phtpriv->ht_option)
...@@ -1534,7 +1534,7 @@ int update_sta_support_rate(struct adapter *padapter, u8 *pvar_ie, uint var_ie_l ...@@ -1534,7 +1534,7 @@ int update_sta_support_rate(struct adapter *padapter, u8 *pvar_ie, uint var_ie_l
struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
pIE = (struct ndis_802_11_var_ie *)rtw_get_ie(pvar_ie, _SUPPORTEDRATES_IE_, &ie_len, var_ie_len); pIE = (struct ndis_802_11_var_ie *)rtw_get_ie(pvar_ie, _SUPPORTEDRATES_IE_, &ie_len, var_ie_len);
if (pIE == NULL) if (!pIE)
return _FAIL; return _FAIL;
if (ie_len > NDIS_802_11_LENGTH_RATES_EX) if (ie_len > NDIS_802_11_LENGTH_RATES_EX)
return _FAIL; return _FAIL;
......
...@@ -479,7 +479,7 @@ static s32 update_attrib(struct adapter *padapter, struct sk_buff *pkt, struct p ...@@ -479,7 +479,7 @@ static s32 update_attrib(struct adapter *padapter, struct sk_buff *pkt, struct p
psta = rtw_get_bcmc_stainfo(padapter); psta = rtw_get_bcmc_stainfo(padapter);
} else { } else {
psta = rtw_get_stainfo(pstapriv, pattrib->ra); psta = rtw_get_stainfo(pstapriv, pattrib->ra);
if (psta == NULL) { /* if we cannot get psta => drrp the pkt */ if (!psta) { /* if we cannot get psta => drrp the pkt */
RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, ("\nupdate_attrib => get sta_info fail, ra: %pM\n", (pattrib->ra))); RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, ("\nupdate_attrib => get sta_info fail, ra: %pM\n", (pattrib->ra)));
res = _FAIL; res = _FAIL;
goto exit; goto exit;
...@@ -622,7 +622,7 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr ...@@ -622,7 +622,7 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr
if (pattrib->encrypt == _TKIP_) {/* if (psecuritypriv->dot11PrivacyAlgrthm == _TKIP_PRIVACY_) */ if (pattrib->encrypt == _TKIP_) {/* if (psecuritypriv->dot11PrivacyAlgrthm == _TKIP_PRIVACY_) */
/* encode mic code */ /* encode mic code */
if (stainfo != NULL) { if (stainfo) {
u8 null_key[16] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, u8 null_key[16] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0}; 0x0, 0x0};
...@@ -957,7 +957,7 @@ s32 rtw_xmitframe_coalesce(struct adapter *padapter, struct sk_buff *pkt, struct ...@@ -957,7 +957,7 @@ s32 rtw_xmitframe_coalesce(struct adapter *padapter, struct sk_buff *pkt, struct
psta = rtw_get_stainfo(&padapter->stapriv, pattrib->ra); psta = rtw_get_stainfo(&padapter->stapriv, pattrib->ra);
if (psta == NULL) if (!psta)
return _FAIL; return _FAIL;
if (pxmitframe->buf_addr == NULL) { if (pxmitframe->buf_addr == NULL) {
...@@ -1139,7 +1139,7 @@ void rtw_update_protection(struct adapter *padapter, u8 *ie, uint ie_len) ...@@ -1139,7 +1139,7 @@ void rtw_update_protection(struct adapter *padapter, u8 *ie, uint ie_len)
case AUTO_VCS: case AUTO_VCS:
default: default:
perp = rtw_get_ie(ie, _ERPINFO_IE_, &erp_len, ie_len); perp = rtw_get_ie(ie, _ERPINFO_IE_, &erp_len, ie_len);
if (perp == NULL) { if (!perp) {
pxmitpriv->vcs = NONE_VCS; pxmitpriv->vcs = NONE_VCS;
} else { } else {
protection = (*(perp + 2)) & BIT(1); protection = (*(perp + 2)) & BIT(1);
...@@ -1207,7 +1207,7 @@ s32 rtw_free_xmitbuf_ext(struct xmit_priv *pxmitpriv, struct xmit_buf *pxmitbuf) ...@@ -1207,7 +1207,7 @@ s32 rtw_free_xmitbuf_ext(struct xmit_priv *pxmitpriv, struct xmit_buf *pxmitbuf)
struct __queue *pfree_queue = &pxmitpriv->free_xmit_extbuf_queue; struct __queue *pfree_queue = &pxmitpriv->free_xmit_extbuf_queue;
if (pxmitbuf == NULL) if (!pxmitbuf)
return _FAIL; return _FAIL;
spin_lock_irqsave(&pfree_queue->lock, irql); spin_lock_irqsave(&pfree_queue->lock, irql);
...@@ -1253,7 +1253,7 @@ s32 rtw_free_xmitbuf(struct xmit_priv *pxmitpriv, struct xmit_buf *pxmitbuf) ...@@ -1253,7 +1253,7 @@ s32 rtw_free_xmitbuf(struct xmit_priv *pxmitpriv, struct xmit_buf *pxmitbuf)
unsigned long irql; unsigned long irql;
struct __queue *pfree_xmitbuf_queue = &pxmitpriv->free_xmitbuf_queue; struct __queue *pfree_xmitbuf_queue = &pxmitpriv->free_xmitbuf_queue;
if (pxmitbuf == NULL) if (!pxmitbuf)
return _FAIL; return _FAIL;
if (pxmitbuf->sctx) { if (pxmitbuf->sctx) {
...@@ -1344,7 +1344,7 @@ s32 rtw_free_xmitframe(struct xmit_priv *pxmitpriv, struct xmit_frame *pxmitfram ...@@ -1344,7 +1344,7 @@ s32 rtw_free_xmitframe(struct xmit_priv *pxmitpriv, struct xmit_frame *pxmitfram
struct sk_buff *pndis_pkt = NULL; struct sk_buff *pndis_pkt = NULL;
if (pxmitframe == NULL) { if (!pxmitframe) {
RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("====== rtw_free_xmitframe():pxmitframe == NULL!!!!!!!!!!\n")); RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("====== rtw_free_xmitframe():pxmitframe == NULL!!!!!!!!!!\n"));
goto exit; goto exit;
} }
...@@ -1537,7 +1537,7 @@ s32 rtw_xmit_classifier(struct adapter *padapter, struct xmit_frame *pxmitframe) ...@@ -1537,7 +1537,7 @@ s32 rtw_xmit_classifier(struct adapter *padapter, struct xmit_frame *pxmitframe)
else else
psta = rtw_get_stainfo(pstapriv, pattrib->ra); psta = rtw_get_stainfo(pstapriv, pattrib->ra);
if (psta == NULL) { if (!psta) {
res = _FAIL; res = _FAIL;
DBG_88E("rtw_xmit_classifier: psta == NULL\n"); DBG_88E("rtw_xmit_classifier: psta == NULL\n");
RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("rtw_xmit_classifier: psta == NULL\n")); RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("rtw_xmit_classifier: psta == NULL\n"));
...@@ -1645,7 +1645,7 @@ s32 rtw_xmit(struct adapter *padapter, struct sk_buff **ppkt) ...@@ -1645,7 +1645,7 @@ s32 rtw_xmit(struct adapter *padapter, struct sk_buff **ppkt)
s32 res; s32 res;
pxmitframe = rtw_alloc_xmitframe(pxmitpriv); pxmitframe = rtw_alloc_xmitframe(pxmitpriv);
if (pxmitframe == NULL) { if (!pxmitframe) {
RT_TRACE(_module_xmit_osdep_c_, _drv_err_, ("rtw_xmit: no more pxmitframe\n")); RT_TRACE(_module_xmit_osdep_c_, _drv_err_, ("rtw_xmit: no more pxmitframe\n"));
DBG_88E("DBG_TX_DROP_FRAME %s no more pxmitframe\n", __func__); DBG_88E("DBG_TX_DROP_FRAME %s no more pxmitframe\n", __func__);
return -1; return -1;
...@@ -1698,7 +1698,7 @@ int xmitframe_enqueue_for_sleeping_sta(struct adapter *padapter, struct xmit_fra ...@@ -1698,7 +1698,7 @@ int xmitframe_enqueue_for_sleeping_sta(struct adapter *padapter, struct xmit_fra
else else
psta = rtw_get_stainfo(pstapriv, pattrib->ra); psta = rtw_get_stainfo(pstapriv, pattrib->ra);
if (psta == NULL) if (!psta)
return ret; return ret;
if (pattrib->triggered == 1) { if (pattrib->triggered == 1) {
......
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