Commit 26482bed authored by Marco Cesati's avatar Marco Cesati Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: remove typedefs in odm_EdcaTurboCheck.h



This commit fixes the following checkpatch.pl warning:

    WARNING: do not add new typedefs
    #11: FILE: hal/odm_EdcaTurboCheck.h:11:
    +typedef struct _EDCA_TURBO_ {

Signed-off-by: default avatarMarco Cesati <marco.cesati@gmail.com>
Link: https://lore.kernel.org/r/20210312082638.25512-8-marco.cesati@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 41da002e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1121,7 +1121,7 @@ struct DM_ODM_T { /* DM_Out_Source_Dynamic_Mechanism_Structure */
	bool RSSI_test;
	struct CFO_TRACKING DM_CfoTrack;

	EDCA_T DM_EDCA_Table;
	struct EDCA_T DM_EDCA_Table;
	u32 WMMEDCA_BE;
	struct PATHDIV_T DM_PathDiv;
	/*  Copy from SD4 structure */
+2 −2
Original line number Diff line number Diff line
@@ -8,12 +8,12 @@
#ifndef __ODMEDCATURBOCHECK_H__
#define __ODMEDCATURBOCHECK_H__

typedef struct _EDCA_TURBO_ {
struct EDCA_T { /* _EDCA_TURBO_ */
	bool bCurrentTurboEDCA;
	bool bIsCurRDLState;

	u32 prv_traffic_idx; /*  edca turbo */
} EDCA_T, *pEDCA_T;
};

void odm_EdcaTurboCheck(void *pDM_VOID);
void ODM_EdcaTurboInit(void *pDM_VOID);