Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef txbbgain_struct to struct txbbgain…
Browse files Browse the repository at this point in the history
…_struct

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent ebbef64 commit 031189e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -491,11 +491,10 @@ typedef enum _TWO_PORT_STATUS
TWO_PORT_STATUS__WITHOUT_ANY_ASSOCIATE
}TWO_PORT_STATUS;

typedef struct _txbbgain_struct
{
struct txbbgain_struct {
long txbb_iq_amplifygain;
u32 txbbgain_value;
} txbbgain_struct, *ptxbbgain_struct;
};

typedef struct _ccktxbbgain_struct
{
Expand Down Expand Up @@ -602,7 +601,7 @@ typedef struct r8192_priv
ccktxbbgain_struct cck_txbbgain_table[CCKTxBBGainTableLength];
ccktxbbgain_struct cck_txbbgain_ch14_table[CCKTxBBGainTableLength];

txbbgain_struct txbbgain_table[TxBBGainTableLength];
struct txbbgain_struct txbbgain_table[TxBBGainTableLength];

ACM_METHOD AcmMethod;

Expand Down

0 comments on commit 031189e

Please sign in to comment.