Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef DCMD_TXCMD_T to struct dcmd_txcmd
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 7204b51 commit bdc632b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/rtl8192e/rtl_dm.c
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ static void dm_TXPowerTrackingCallback_TSSI(struct net_device * dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
bool bHighpowerstate, viviflag = false;
DCMD_TXCMD_T tx_cmd;
struct dcmd_txcmd tx_cmd;
u8 powerlevelOFDM24G;
int i =0, j = 0, k = 0;
u8 RF_Type, tmp_report[5]={0, 0, 0, 0, 0};
Expand All @@ -534,7 +534,7 @@ static void dm_TXPowerTrackingCallback_TSSI(struct net_device * dev)
tx_cmd.Op = TXCMD_SET_TX_PWR_TRACKING;
tx_cmd.Length = 4;
tx_cmd.Value = Value;
cmpk_message_handle_tx(dev, (u8*)&tx_cmd, DESC_PACKET_TYPE_INIT, sizeof(DCMD_TXCMD_T));
cmpk_message_handle_tx(dev, (u8*)&tx_cmd, DESC_PACKET_TYPE_INIT, sizeof(struct dcmd_txcmd));
mdelay(1);
for (i = 0;i <= 30; i++)
{
Expand Down Expand Up @@ -3456,7 +3456,7 @@ static void dm_check_txrateandretrycount(struct net_device * dev)

static void dm_send_rssi_tofw(struct net_device *dev)
{
DCMD_TXCMD_T tx_cmd;
struct dcmd_txcmd tx_cmd;
struct r8192_priv *priv = rtllib_priv(dev);

write_nic_byte(dev, DRIVER_RSSI, (u8)priv->undecorated_smoothed_pwdb);
Expand All @@ -3466,7 +3466,7 @@ static void dm_send_rssi_tofw(struct net_device *dev)
tx_cmd.Value = priv->undecorated_smoothed_pwdb;

cmpk_message_handle_tx(dev, (u8*)&tx_cmd,
DESC_PACKET_TYPE_INIT, sizeof(DCMD_TXCMD_T));
DESC_PACKET_TYPE_INIT, sizeof(struct dcmd_txcmd));
}

/*---------------------------Define function prototype------------------------*/
5 changes: 2 additions & 3 deletions drivers/staging/rtl8192e/rtl_dm.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,11 @@ typedef enum tag_DM_DbgMode_Definition
DM_DBG_MAX
}DM_DBG_E;

typedef struct tag_Tx_Config_Cmd_Format
{
struct dcmd_txcmd {
u32 Op;
u32 Length;
u32 Value;
}DCMD_TXCMD_T, *PDCMD_TXCMD_T;
};//, *struct dcmd_txcmd *;
/*------------------------------Define structure----------------------------*/


Expand Down

0 comments on commit bdc632b

Please sign in to comment.