mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
staging: rtl8723bs: remove typedefs in rtw_mp.h
This commit fixes the following checkpatch.pl warnings:
WARNING: do not add new typedefs
#52: FILE: include/rtw_mp.h:52:
+typedef struct _MPT_CONTEXT {
WARNING: do not add new typedefs
#268: FILE: include/rtw_mp.h:268:
+typedef struct _IOCMD_STRUCT_ {
Signed-off-by: Marco Cesati <marco.cesati@gmail.com>
Link: https://lore.kernel.org/r/20210312082638.25512-17-marco.cesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8b6caa1555
commit
4399c37cfd
@@ -49,7 +49,7 @@ struct mp_tx {
|
||||
#define MP_MAX_LINES_BYTES 256
|
||||
|
||||
typedef void (*MPT_WORK_ITEM_HANDLER)(void *Adapter);
|
||||
typedef struct _MPT_CONTEXT {
|
||||
struct MPT_CONTEXT {
|
||||
/* Indicate if we have started Mass Production Test. */
|
||||
bool bMassProdTest;
|
||||
|
||||
@@ -148,7 +148,7 @@ typedef struct _MPT_CONTEXT {
|
||||
u32 mptOutLen;
|
||||
u8 mptOutBuf[100];
|
||||
|
||||
} MPT_CONTEXT, *PMPT_CONTEXT;
|
||||
};
|
||||
/* endif */
|
||||
|
||||
/* E-Fuse */
|
||||
@@ -260,16 +260,16 @@ struct mp_priv {
|
||||
bool bSetRxBssid;
|
||||
bool bTxBufCkFail;
|
||||
|
||||
MPT_CONTEXT MptCtx;
|
||||
struct MPT_CONTEXT MptCtx;
|
||||
|
||||
u8 *TXradomBuffer;
|
||||
};
|
||||
|
||||
typedef struct _IOCMD_STRUCT_ {
|
||||
struct IOCMD_STRUCT {
|
||||
u8 cmdclass;
|
||||
u16 value;
|
||||
u8 index;
|
||||
} IOCMD_STRUCT;
|
||||
};
|
||||
|
||||
struct rf_reg_param {
|
||||
u32 path;
|
||||
|
||||
Reference in New Issue
Block a user