mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-07 14:03:05 +00:00
rtl8188eu: Remove CONFIG_BSD_RX_USE_MBUF
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
3e42cc02e2
commit
bb4b1fe327
2 changed files with 2 additions and 14 deletions
|
@ -215,13 +215,8 @@ int rtw_free_recvframe(union recv_frame *precvframe, _queue *pfree_recv_queue)
|
|||
struct adapter *padapter=precvframe->u.hdr.adapter;
|
||||
struct recv_priv *precvpriv = &padapter->recvpriv;
|
||||
|
||||
if(precvframe->u.hdr.pkt)
|
||||
{
|
||||
#ifdef CONFIG_BSD_RX_USE_MBUF
|
||||
m_freem(precvframe->u.hdr.pkt);
|
||||
#else /* CONFIG_BSD_RX_USE_MBUF */
|
||||
if(precvframe->u.hdr.pkt) {
|
||||
rtw_skb_free(precvframe->u.hdr.pkt);/* free skb by driver */
|
||||
#endif /* CONFIG_BSD_RX_USE_MBUF */
|
||||
precvframe->u.hdr.pkt = NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue