Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef cmpk_tx_status_t to struct cmpk_tx…
Browse files Browse the repository at this point in the history
…_status

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 fb62096 commit 7f6aa06
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 @@ -266,7 +266,7 @@ cmpk_handle_query_config_rx(


static void cmpk_count_tx_status( struct net_device *dev,
cmpk_tx_status_t *pstx_status)
struct cmpk_tx_status *pstx_status)
{
struct r8192_priv *priv = rtllib_priv(dev);

Expand Down Expand Up @@ -314,9 +314,9 @@ cmpk_handle_tx_status(
struct net_device *dev,
u8* pmsg)
{
cmpk_tx_status_t rx_tx_sts; /* */
struct cmpk_tx_status rx_tx_sts; /* */

memcpy((void*)&rx_tx_sts, (void*)pmsg, sizeof(cmpk_tx_status_t));
memcpy((void*)&rx_tx_sts, (void*)pmsg, sizeof(struct cmpk_tx_status));
cmpk_count_tx_status(dev, &rx_tx_sts);

}
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 @@ -21,7 +21,7 @@
#define CMPK_RX_TX_FB_SIZE sizeof(struct cmpk_txfb)
#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(cmpk_tx_status_t)
#define CMPK_RX_TX_STS_SIZE sizeof(struct cmpk_tx_status)
#define CMPK_RX_DBG_MSG_SIZE sizeof(cmpk_rx_dbginfo_t)
#define CMPK_TX_RAHIS_SIZE sizeof(cmpk_tx_rahis_t)

Expand Down Expand Up @@ -83,8 +83,7 @@ struct cmpk_set_cfg {

#define cmpk_query_cfg_t struct cmpk_set_cfg

typedef struct tag_tx_stats_feedback
{
struct cmpk_tx_status {
u16 reserve1;
u8 length;
u8 element_id;
Expand All @@ -111,7 +110,7 @@ typedef struct tag_tx_stats_feedback
u16 reserve3_23;
u8 reserve3_1;
u8 rate;
}__attribute__((packed)) cmpk_tx_status_t;
}__packed;

typedef struct tag_rx_debug_message_feedback
{
Expand Down

0 comments on commit 7f6aa06

Please sign in to comment.