Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef cmpk_rx_dbginfo_t to struct cmpk_r…
Browse files Browse the repository at this point in the history
…x_dbginfo

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 7f6aa06 commit acf08e1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/staging/rtl8192e/r8192E_cmdpkt.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define CMPK_TX_SET_CONFIG_SIZE sizeof(struct cmpk_set_cfg)
#define CMPK_BOTH_QUERY_CONFIG_SIZE sizeof(struct cmpk_set_cfg)
#define CMPK_RX_TX_STS_SIZE sizeof(struct cmpk_tx_status)
#define CMPK_RX_DBG_MSG_SIZE sizeof(cmpk_rx_dbginfo_t)
#define CMPK_RX_DBG_MSG_SIZE sizeof(struct cmpk_rx_dbginfo)
#define CMPK_TX_RAHIS_SIZE sizeof(cmpk_tx_rahis_t)

#define ISR_TxBcnOk BIT27
Expand Down Expand Up @@ -112,14 +112,13 @@ struct cmpk_tx_status {
u8 rate;
}__packed;

typedef struct tag_rx_debug_message_feedback
{
struct cmpk_rx_dbginfo {
u16 reserve1;
u8 length;
u8 element_id;


}cmpk_rx_dbginfo_t;
};//;

typedef struct tag_tx_rate_history
{
Expand Down

0 comments on commit acf08e1

Please sign in to comment.