Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef cmpk_txfb_t to struct cmpk_txfb
Browse files Browse the repository at this point in the history
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 6f22c62 commit d3ab721
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 @@ -104,7 +104,7 @@
static void
cmpk_count_txstatistic(
struct net_device *dev,
cmpk_txfb_t *pstx_fb)
struct cmpk_txfb *pstx_fb)
{
struct r8192_priv *priv = rtllib_priv(dev);
#ifdef ENABLE_PS
Expand Down Expand Up @@ -158,12 +158,12 @@ cmpk_handle_tx_feedback(
u8 * pmsg)
{
struct r8192_priv *priv = rtllib_priv(dev);
cmpk_txfb_t rx_tx_fb; /* */
struct cmpk_txfb rx_tx_fb; /* */

priv->stats.txfeedback++;


memcpy((u8*)&rx_tx_fb, pmsg, sizeof(cmpk_txfb_t));
memcpy((u8*)&rx_tx_fb, pmsg, sizeof(struct cmpk_txfb));
cmpk_count_txstatistic(dev, &rx_tx_fb);

} /* cmpk_Handle_Tx_Feedback */
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 @@ -18,7 +18,7 @@
******************************************************************************/
#ifndef R819XUSB_CMDPKT_H
#define R819XUSB_CMDPKT_H
#define CMPK_RX_TX_FB_SIZE sizeof(cmpk_txfb_t)
#define CMPK_RX_TX_FB_SIZE sizeof(struct cmpk_txfb)
#define CMPK_TX_SET_CONFIG_SIZE sizeof(cmpk_set_cfg_t)
#define CMPK_BOTH_QUERY_CONFIG_SIZE sizeof(cmpk_set_cfg_t)
#define CMPK_RX_TX_STS_SIZE sizeof(cmpk_tx_status_t)
Expand All @@ -30,8 +30,7 @@
#define ISR_BcnTimerIntr BIT13


typedef struct tag_cmd_pkt_tx_feedback
{
struct cmpk_txfb {
u8 element_id;
u8 length;
u8 TID:4; /* */
Expand All @@ -56,7 +55,7 @@ typedef struct tag_cmd_pkt_tx_feedback

u16 reserve3; /* */
u16 duration; /* */
}cmpk_txfb_t;
};//;

typedef struct tag_cmd_pkt_interrupt_status
{
Expand Down

0 comments on commit d3ab721

Please sign in to comment.