mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 02:23:16 +00:00
staging: rtl8188eu: remove commented code
Remove unused commented code in the file core/rte_xmit.c. Clears 'please, no space before tabs' and 'line over 80 characters' checkpatch warnings. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f996f37471
commit
1330c795c5
@ -77,8 +77,6 @@ s32 _rtw_init_xmit_priv(struct xmit_priv *pxmitpriv, struct adapter *padapter)
|
||||
goto exit;
|
||||
}
|
||||
pxmitpriv->pxmit_frame_buf = PTR_ALIGN(pxmitpriv->pallocated_frame_buf, 4);
|
||||
/* pxmitpriv->pxmit_frame_buf = pxmitpriv->pallocated_frame_buf + 4 - */
|
||||
/* ((size_t) (pxmitpriv->pallocated_frame_buf) &3); */
|
||||
|
||||
pxframe = (struct xmit_frame *)pxmitpriv->pxmit_frame_buf;
|
||||
|
||||
@ -115,8 +113,6 @@ s32 _rtw_init_xmit_priv(struct xmit_priv *pxmitpriv, struct adapter *padapter)
|
||||
}
|
||||
|
||||
pxmitpriv->pxmitbuf = PTR_ALIGN(pxmitpriv->pallocated_xmitbuf, 4);
|
||||
/* pxmitpriv->pxmitbuf = pxmitpriv->pallocated_xmitbuf + 4 - */
|
||||
/* ((size_t) (pxmitpriv->pallocated_xmitbuf) &3); */
|
||||
|
||||
pxmitbuf = (struct xmit_buf *)pxmitpriv->pxmitbuf;
|
||||
|
||||
@ -321,13 +317,6 @@ static void update_attrib_vcs_info(struct adapter *padapter, struct xmit_frame *
|
||||
|
||||
static void update_attrib_phy_info(struct pkt_attrib *pattrib, struct sta_info *psta)
|
||||
{
|
||||
/*if (psta->rtsen)
|
||||
pattrib->vcs_mode = RTS_CTS;
|
||||
else if (psta->cts2self)
|
||||
pattrib->vcs_mode = CTS_TO_SELF;
|
||||
else
|
||||
pattrib->vcs_mode = NONE_VCS;*/
|
||||
|
||||
pattrib->mdata = 0;
|
||||
pattrib->eosp = 0;
|
||||
pattrib->triggered = 0;
|
||||
@ -606,7 +595,7 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr
|
||||
|
||||
hw_hdr_offset = TXDESC_SIZE + (pxmitframe->pkt_offset * PACKET_OFFSET_SZ);
|
||||
|
||||
if (pattrib->encrypt == _TKIP_) {/* if (psecuritypriv->dot11PrivacyAlgrthm == _TKIP_PRIVACY_) */
|
||||
if (pattrib->encrypt == _TKIP_) {
|
||||
/* encode mic code */
|
||||
if (stainfo) {
|
||||
u8 null_key[16] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
@ -621,11 +610,8 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr
|
||||
/* start to calculate the mic code */
|
||||
rtw_secmicsetkey(&micdata, psecuritypriv->dot118021XGrptxmickey[psecuritypriv->dot118021XGrpKeyid].skey);
|
||||
} else {
|
||||
if (!memcmp(&stainfo->dot11tkiptxmickey.skey[0], null_key, 16)) {
|
||||
/* DbgPrint("\nxmitframe_addmic:stainfo->dot11tkiptxmickey == 0\n"); */
|
||||
/* msleep(10); */
|
||||
if (!memcmp(&stainfo->dot11tkiptxmickey.skey[0], null_key, 16))
|
||||
return _FAIL;
|
||||
}
|
||||
/* start to calculate the mic code */
|
||||
rtw_secmicsetkey(&micdata, &stainfo->dot11tkiptxmickey.skey[0]);
|
||||
}
|
||||
@ -1157,7 +1143,6 @@ struct xmit_buf *rtw_alloc_xmitbuf_ext(struct xmit_priv *pxmitpriv)
|
||||
list_del_init(&pxmitbuf->list);
|
||||
pxmitpriv->free_xmit_extbuf_cnt--;
|
||||
pxmitbuf->priv_data = NULL;
|
||||
/* pxmitbuf->ext_tag = true; */
|
||||
if (pxmitbuf->sctx) {
|
||||
DBG_88E("%s pxmitbuf->sctx is not NULL\n", __func__);
|
||||
rtw_sctx_done_err(&pxmitbuf->sctx, RTW_SCTX_DONE_BUF_ALLOC);
|
||||
@ -1194,8 +1179,6 @@ struct xmit_buf *rtw_alloc_xmitbuf(struct xmit_priv *pxmitpriv)
|
||||
struct xmit_buf *pxmitbuf;
|
||||
struct __queue *pfree_xmitbuf_queue = &pxmitpriv->free_xmitbuf_queue;
|
||||
|
||||
/* DBG_88E("+rtw_alloc_xmitbuf\n"); */
|
||||
|
||||
spin_lock_irqsave(&pfree_xmitbuf_queue->lock, irql);
|
||||
pxmitbuf = list_first_entry_or_null(&pfree_xmitbuf_queue->queue,
|
||||
struct xmit_buf, list);
|
||||
@ -1286,7 +1269,6 @@ struct xmit_frame *rtw_alloc_xmitframe(struct xmit_priv *pxmitpriv)
|
||||
pxframe->pxmitbuf = NULL;
|
||||
|
||||
memset(&pxframe->attrib, 0, sizeof(struct pkt_attrib));
|
||||
/* pxframe->attrib.psta = NULL; */
|
||||
|
||||
pxframe->frame_tag = DATA_FRAMETAG;
|
||||
|
||||
@ -1360,7 +1342,6 @@ s32 rtw_xmitframe_enqueue(struct adapter *padapter, struct xmit_frame *pxmitfram
|
||||
if (rtw_xmit_classifier(padapter, pxmitframe) == _FAIL) {
|
||||
RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_,
|
||||
("%s: drop xmit pkt for classifier fail\n", __func__));
|
||||
/* pxmitframe->pkt = NULL; */
|
||||
return _FAIL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user