Commit d514e345 authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef ccktxbbgain_struct to struct ccktxbbgain

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent b7a14040
......@@ -496,10 +496,9 @@ struct txbbgain_struct {
u32 txbbgain_value;
};
typedef struct _ccktxbbgain_struct
{
struct ccktxbbgain {
u8 ccktxbb_valuearray[8];
} ccktxbbgain_struct,*pccktxbbgain_struct;
};
typedef struct _init_gain
{
......@@ -598,8 +597,8 @@ typedef struct r8192_priv
struct bb_reg_definition PHYRegDef[4];
rate_adaptive rate_adaptive;
ccktxbbgain_struct cck_txbbgain_table[CCKTxBBGainTableLength];
ccktxbbgain_struct cck_txbbgain_ch14_table[CCKTxBBGainTableLength];
struct ccktxbbgain cck_txbbgain_table[CCKTxBBGainTableLength];
struct ccktxbbgain cck_txbbgain_ch14_table[CCKTxBBGainTableLength];
struct txbbgain_struct txbbgain_table[TxBBGainTableLength];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment