mirror of https://gitee.com/openkylin/linux.git
staging: rtl8723au: update_txdesc(): bagg_pkt is always false
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
18f576f6da
commit
a113b53cd3
|
@ -130,7 +130,7 @@ static void fill_txdesc_phy(struct pkt_attrib *pattrib, __le32 *pdw)
|
|||
}
|
||||
}
|
||||
|
||||
static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz, u8 bagg_pkt)
|
||||
static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz)
|
||||
{
|
||||
int pull = 0;
|
||||
uint qsel;
|
||||
|
@ -143,7 +143,7 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz, u8 bag
|
|||
struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info;
|
||||
int bmcst = is_multicast_ether_addr(pattrib->ra);
|
||||
|
||||
if ((!bagg_pkt) && (urb_zero_packet_chk(padapter, sz) == 0)) {
|
||||
if (urb_zero_packet_chk(padapter, sz) == 0) {
|
||||
ptxdesc = (struct tx_desc *)(pmem+PACKET_OFFSET_SZ);
|
||||
pull = 1;
|
||||
pxmitframe->pkt_offset--;
|
||||
|
@ -320,7 +320,7 @@ static int rtw_dump_xframe(struct rtw_adapter *padapter,
|
|||
sz = pattrib->last_txcmdsz;
|
||||
}
|
||||
|
||||
pull = update_txdesc(pxmitframe, mem_addr, sz, false);
|
||||
pull = update_txdesc(pxmitframe, mem_addr, sz);
|
||||
|
||||
if (pull) {
|
||||
mem_addr += PACKET_OFFSET_SZ; /* pull txdesc head */
|
||||
|
|
Loading…
Reference in New Issue