mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 22:43:04 +00:00
rtl8188eu: Remove CONFIG_XMIT_ACK and CONFIG_XMIT_ACK_POLLING
The first one was always selected. The second was not selected. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
99db2615c8
commit
5ded2b3ded
10 changed files with 1 additions and 103 deletions
|
@ -289,9 +289,7 @@ struct xmit_frame
|
|||
#endif
|
||||
s8 pkt_offset;
|
||||
|
||||
#ifdef CONFIG_XMIT_ACK
|
||||
u8 ack_report;
|
||||
#endif
|
||||
|
||||
u8 *alloc_addr; /* the actual address this xmitframe allocated */
|
||||
u8 ext_tag; /* 0:data, 1:mgmt */
|
||||
|
@ -431,11 +429,9 @@ struct xmit_priv {
|
|||
struct agg_pkt_info agg_pkt[MAX_AGG_PKT_NUM];
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_XMIT_ACK
|
||||
int ack_tx;
|
||||
_mutex ack_tx_mutex;
|
||||
struct submit_ctx ack_tx_ops;
|
||||
#endif
|
||||
_lock lock_sctx;
|
||||
};
|
||||
|
||||
|
@ -507,10 +503,8 @@ thread_return rtw_xmit_thread(thread_context context);
|
|||
|
||||
u32 rtw_get_ff_hwaddr(struct xmit_frame *pxmitframe);
|
||||
|
||||
#ifdef CONFIG_XMIT_ACK
|
||||
int rtw_ack_tx_wait(struct xmit_priv *pxmitpriv, u32 timeout_ms);
|
||||
void rtw_ack_tx_done(struct xmit_priv *pxmitpriv, int status);
|
||||
#endif //CONFIG_XMIT_ACK
|
||||
|
||||
|
||||
//include after declaring struct xmit_buf, in order to avoid warning
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue