Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef cmpk_tx_rahis_t to struct cmpk_tx_…
Browse files Browse the repository at this point in the history
…rahis

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 acf08e1 commit 1b41925
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/r8192E_cmdpkt.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ cmpk_handle_tx_rate_history(
struct net_device *dev,
u8* pmsg)
{
cmpk_tx_rahis_t *ptxrate;
struct cmpk_tx_rahis *ptxrate;
u8 i, j;
u16 length = sizeof(cmpk_tx_rahis_t);
u16 length = sizeof(struct cmpk_tx_rahis);
u32 *ptemp;
struct r8192_priv *priv = rtllib_priv(dev);

Expand All @@ -354,7 +354,7 @@ cmpk_handle_tx_rate_history(
ptemp[i] = (temp1<<16)|temp2;
}

ptxrate = (cmpk_tx_rahis_t *)pmsg;
ptxrate = (struct cmpk_tx_rahis *)pmsg;

if (ptxrate == NULL )
{
Expand Down
7 changes: 3 additions & 4 deletions drivers/staging/rtl8192e/r8192E_cmdpkt.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#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(struct cmpk_rx_dbginfo)
#define CMPK_TX_RAHIS_SIZE sizeof(cmpk_tx_rahis_t)
#define CMPK_TX_RAHIS_SIZE sizeof(struct cmpk_tx_rahis)

#define ISR_TxBcnOk BIT27
#define ISR_TxBcnErr BIT26
Expand Down Expand Up @@ -120,8 +120,7 @@ struct cmpk_rx_dbginfo {

};//;

typedef struct tag_tx_rate_history
{
struct cmpk_tx_rahis {
u8 element_id;
u8 length;
u16 reserved1;
Expand All @@ -136,7 +135,7 @@ typedef struct tag_tx_rate_history

u16 ht_mcs[4][16];

}__attribute__((packed)) cmpk_tx_rahis_t;
} __packed;

typedef enum tag_command_packet_directories
{
Expand Down

0 comments on commit 1b41925

Please sign in to comment.