Staging: rtl8188eu: remove dead code
The condition pxmitpriv->hwxmit_entry == 5 is always false because HWXMIT_ENTRY is always 4. Signed-off-by: Matteo Semenzato <mattew8898@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ea07278681
commit
c181be7f32
|
@ -1639,19 +1639,10 @@ void rtw_alloc_hwxmits(struct adapter *padapter)
|
|||
|
||||
hwxmits = pxmitpriv->hwxmits;
|
||||
|
||||
if (pxmitpriv->hwxmit_entry == 5) {
|
||||
hwxmits[0] .sta_queue = &pxmitpriv->bm_pending;
|
||||
hwxmits[1] .sta_queue = &pxmitpriv->vo_pending;
|
||||
hwxmits[2] .sta_queue = &pxmitpriv->vi_pending;
|
||||
hwxmits[3] .sta_queue = &pxmitpriv->bk_pending;
|
||||
hwxmits[4] .sta_queue = &pxmitpriv->be_pending;
|
||||
} else if (pxmitpriv->hwxmit_entry == 4) {
|
||||
hwxmits[0] .sta_queue = &pxmitpriv->vo_pending;
|
||||
hwxmits[1] .sta_queue = &pxmitpriv->vi_pending;
|
||||
hwxmits[2] .sta_queue = &pxmitpriv->be_pending;
|
||||
hwxmits[3] .sta_queue = &pxmitpriv->bk_pending;
|
||||
} else {
|
||||
}
|
||||
hwxmits[0] .sta_queue = &pxmitpriv->vo_pending;
|
||||
hwxmits[1] .sta_queue = &pxmitpriv->vi_pending;
|
||||
hwxmits[2] .sta_queue = &pxmitpriv->be_pending;
|
||||
hwxmits[3] .sta_queue = &pxmitpriv->bk_pending;
|
||||
}
|
||||
|
||||
void rtw_free_hwxmits(struct adapter *padapter)
|
||||
|
|
Loading…
Reference in New Issue