mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 14:33:05 +00:00
rtl8188eu: Remove DBG_CONFIG_ERROR_DETECT
This symbol is defined. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
15018af1a2
commit
2339d6c52a
20 changed files with 31 additions and 119 deletions
|
@ -68,5 +68,4 @@
|
|||
|
||||
#define CONFIG_PROC_DEBUG
|
||||
|
||||
#define DBG_CONFIG_ERROR_DETECT
|
||||
#define DBG_CONFIG_ERROR_RESET
|
||||
|
|
|
@ -234,7 +234,6 @@ struct hal_ops {
|
|||
u8 (*Efuse_WordEnableDataWrite)(struct adapter *padapter, u16 efuse_addr, u8 word_en, u8 *data, bool bPseudoTest);
|
||||
bool (*Efuse_PgPacketWrite_BT)(struct adapter *padapter, u8 offset, u8 word_en, u8 *data, bool bPseudoTest);
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
void (*sreset_init_value)(struct adapter *padapter);
|
||||
void (*sreset_reset_value)(struct adapter *padapter);
|
||||
void (*silentreset)(struct adapter *padapter);
|
||||
|
@ -242,7 +241,6 @@ struct hal_ops {
|
|||
void (*sreset_linked_status_check) (struct adapter *padapter);
|
||||
u8 (*sreset_get_wifi_status)(struct adapter *padapter);
|
||||
bool (*sreset_inprogress)(struct adapter *padapter);
|
||||
#endif
|
||||
|
||||
int (*IOL_exec_cmds_sync)(struct adapter *padapter, struct xmit_frame *xmit_frame, u32 max_wating_ms, u32 bndy_cnt);
|
||||
void (*hal_notch_filter)(struct adapter * adapter, bool enable);
|
||||
|
@ -404,7 +402,6 @@ void rtw_hal_antdiv_rssi_compared(struct adapter *padapter, struct wlan_bssid_ex
|
|||
s32 rtw_hal_hostap_mgnt_xmit_entry(struct adapter *padapter, _pkt *pkt);
|
||||
#endif
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
void rtw_hal_sreset_init(struct adapter *padapter);
|
||||
void rtw_hal_sreset_reset(struct adapter *padapter);
|
||||
void rtw_hal_sreset_reset_value(struct adapter *padapter);
|
||||
|
@ -412,7 +409,6 @@ void rtw_hal_sreset_xmit_status_check(struct adapter *padapter);
|
|||
void rtw_hal_sreset_linked_status_check (struct adapter *padapter);
|
||||
u8 rtw_hal_sreset_get_wifi_status(struct adapter *padapter);
|
||||
bool rtw_hal_sreset_inprogress(struct adapter *padapter);
|
||||
#endif
|
||||
|
||||
int rtw_hal_iol_cmd(struct adapter *adapter, struct xmit_frame *xmit_frame, u32 max_wating_ms, u32 bndy_cnt);
|
||||
void rtw_hal_notch_filter(struct adapter * adapter, bool enable);
|
||||
|
|
|
@ -31,9 +31,7 @@
|
|||
#include "rtl8188e_xmit.h"
|
||||
#include "rtl8188e_cmd.h"
|
||||
#include "Hal8188EPwrSeq.h"
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
#include "rtl8188e_sreset.h"
|
||||
#endif
|
||||
#include "rtw_efuse.h"
|
||||
|
||||
#include "../hal/odm_precomp.h"
|
||||
|
@ -414,9 +412,7 @@ typedef struct hal_data_8188e
|
|||
struct dm_priv dmpriv;
|
||||
DM_ODM_T odmpriv;
|
||||
//_lock odm_stainfo_lock;
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
struct sreset_priv srestpriv;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
struct btcoexist_priv bt_coexist;
|
||||
|
|
|
@ -25,8 +25,7 @@
|
|||
#include <drv_types.h>
|
||||
#include <rtw_sreset.h>
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
extern void rtl8188e_sreset_xmit_status_check(struct adapter *padapter);
|
||||
extern void rtl8188e_sreset_linked_status_check(struct adapter *padapter);
|
||||
#endif
|
||||
void rtl8188e_sreset_xmit_status_check(struct adapter *padapter);
|
||||
void rtl8188e_sreset_linked_status_check(struct adapter *padapter);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -28,10 +28,7 @@
|
|||
#include "rtl8192c_recv.h"
|
||||
#include "rtl8192c_xmit.h"
|
||||
#include "rtl8192c_cmd.h"
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
#include "rtl8192c_sreset.h"
|
||||
#endif
|
||||
#include "rtw_efuse.h"
|
||||
|
||||
#include "../hal/OUTSRC/odm_precomp.h"
|
||||
|
@ -443,10 +440,7 @@ struct hal_data_8192cu
|
|||
|
||||
struct dm_priv dmpriv;
|
||||
DM_ODM_T odmpriv;
|
||||
//_lock odm_stainfo_lock;
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
struct sreset_priv srestpriv;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BT_COEXIST
|
||||
struct btcoexist_priv bt_coexist;
|
||||
|
|
|
@ -25,8 +25,7 @@
|
|||
#include <drv_types.h>
|
||||
#include <rtw_sreset.h>
|
||||
|
||||
#ifdef DBG_CONFIG_ERROR_DETECT
|
||||
extern void rtl8192c_sreset_xmit_status_check(struct adapter *padapter);
|
||||
extern void rtl8192c_sreset_linked_status_check(struct adapter *padapter);
|
||||
#endif
|
||||
void rtl8192c_sreset_xmit_status_check(struct adapter *padapter);
|
||||
void rtl8192c_sreset_linked_status_check(struct adapter *padapter);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -437,16 +437,12 @@ extern u32 GlobalDebugLevel;
|
|||
|
||||
#endif //CONFIG_BT_COEXIST
|
||||
|
||||
#if defined(DBG_CONFIG_ERROR_DETECT)
|
||||
int proc_get_sreset(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
||||
int proc_set_sreset(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
||||
#endif /* DBG_CONFIG_ERROR_DETECT */
|
||||
|
||||
int proc_get_odm_dbg_comp(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
||||
int proc_set_odm_dbg_comp(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
||||
int proc_get_odm_dbg_level(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
||||
int proc_set_odm_dbg_level(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
||||
|
||||
int proc_get_odm_adaptivity(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
||||
int proc_set_odm_adaptivity(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue