mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 00:24:20 +00:00
rtl8188eu: Remove configuration variables CONFIG_IOL_XXX and associated dead code
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
927e984c73
commit
9ba4954378
16 changed files with 36 additions and 672 deletions
|
@ -26,7 +26,6 @@
|
|||
|
||||
#include <rtw_iol.h>
|
||||
|
||||
#if defined(CONFIG_IOL)
|
||||
#include <usb_ops.h>
|
||||
|
||||
static void iol_mode_enable(PADAPTER padapter, u8 enable)
|
||||
|
@ -413,7 +412,6 @@ void rtw_IOL_cmd_tx_pkt_buf_dump(ADAPTER *Adapter,int data_len)
|
|||
}
|
||||
DBG_88E("###### %s ######\n",__func__);
|
||||
}
|
||||
#endif /* defined(CONFIG_IOL) */
|
||||
|
||||
static void _FWDownloadEnable(PADAPTER padapter, bool enable)
|
||||
{
|
||||
|
@ -1250,7 +1248,6 @@ ReadEFuseByIC(
|
|||
u8 logical_map[512];
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_IOL_READ_EFUSE_MAP
|
||||
if (!bPseudoTest )/* rtw_IOL_applied(Adapter)) */
|
||||
{
|
||||
int ret = _FAIL;
|
||||
|
@ -1270,7 +1267,6 @@ ReadEFuseByIC(
|
|||
goto exit;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Hal_EfuseReadEFuse88E(Adapter, _offset, _size_byte, pbuf, bPseudoTest);
|
||||
|
||||
exit:
|
||||
|
@ -2592,9 +2588,7 @@ void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
|
|||
pHalFunc->xmit_thread_handler = &hal_xmit_handler;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_IOL
|
||||
pHalFunc->IOL_exec_cmds_sync = &rtl8188e_IOL_exec_cmds_sync;
|
||||
#endif
|
||||
|
||||
pHalFunc->hal_notch_filter = &hal_notch_filter_8188e;
|
||||
|
||||
|
@ -2653,14 +2647,9 @@ s32 InitLLTTable(PADAPTER padapter, u8 txpktbuf_bndy)
|
|||
u32 Last_Entry_Of_TxPktBuf = LAST_ENTRY_OF_TX_PKT_BUFFER;/* 176, 22k */
|
||||
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(padapter);
|
||||
|
||||
#if defined(CONFIG_IOL_LLT)
|
||||
if (rtw_IOL_applied(padapter))
|
||||
{
|
||||
if (rtw_IOL_applied(padapter)) {
|
||||
status = iol_InitLLTTable(padapter, txpktbuf_bndy);
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
} else {
|
||||
for (i = 0; i < (txpktbuf_bndy - 1); i++) {
|
||||
status = _LLTWrite(padapter, i, i + 1);
|
||||
if (_SUCCESS != status) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue