Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef tx_desc_cmd to struct tx_desc_cmd
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 ececd69 commit 3215312
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/r8190P_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ struct tx_desc {
};//, *ptx_desc;


typedef struct tx_desc_cmd_819x_pci {
struct tx_desc_cmd {
u16 PktSize;
u8 Reserved1;
u8 CmdType:3;
Expand All @@ -364,7 +364,7 @@ typedef struct tx_desc_cmd_819x_pci {
u32 Reserved4;
u32 Reserved5;
u32 Reserved6;
}tx_desc_cmd, *ptx_desc_cmd;
};//, *ptx_desc_cmd;

typedef struct _rx_desc_819x_pci{
u16 Length:14;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ void rtl8192_tx_fill_desc(struct net_device* dev, struct tx_desc * pdesc, cb_de
pdesc->TxBuffAddr = cpu_to_le32(mapping);
}

void rtl8192_tx_fill_cmd_desc(struct net_device* dev, tx_desc_cmd * entry,
void rtl8192_tx_fill_cmd_desc(struct net_device* dev, struct tx_desc_cmd * entry,
cb_desc * cb_desc, struct sk_buff* skb)
{
struct r8192_priv *priv = rtllib_priv(dev);
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/r8192E_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void rtl8192_link_change(struct net_device *dev);
void rtl8192_AllowAllDestAddr(struct net_device* dev, bool bAllowAllDA, bool WriteIntoReg);
void rtl8192_tx_fill_desc(struct net_device* dev, struct tx_desc * pdesc, cb_desc * cb_desc,
struct sk_buff* skb);
void rtl8192_tx_fill_cmd_desc(struct net_device* dev, tx_desc_cmd * entry,
void rtl8192_tx_fill_cmd_desc(struct net_device* dev, struct tx_desc_cmd * entry,
cb_desc * cb_desc, struct sk_buff* skb);
bool rtl8192_rx_query_status_desc(struct net_device* dev, struct rtllib_rx_stats *stats,
rx_desc *pdesc, struct sk_buff* skb);
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtl_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,7 @@ void rtl8192_tx_cmd(struct net_device *dev, struct sk_buff *skb)
{
struct r8192_priv *priv = rtllib_priv(dev);
struct rtl8192_tx_ring *ring;
tx_desc_cmd* entry;
struct tx_desc_cmd * entry;
unsigned int idx;
cb_desc *tcb_desc;
unsigned long flags;
Expand All @@ -2016,7 +2016,7 @@ void rtl8192_tx_cmd(struct net_device *dev, struct sk_buff *skb)
ring = &priv->tx_ring[TXCMD_QUEUE];

idx = (ring->idx + skb_queue_len(&ring->queue)) % ring->entries;
entry = (tx_desc_cmd*) &ring->desc[idx];
entry = (struct tx_desc_cmd *) &ring->desc[idx];

tcb_desc = (cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ struct rtl819x_ops{
bool (* initialize_adapter)(struct net_device* dev);
void (*link_change)(struct net_device* dev);
void (* tx_fill_descriptor)(struct net_device* dev, struct tx_desc *tx_desc, cb_desc * cb_desc, struct sk_buff *skb);
void (* tx_fill_cmd_descriptor)(struct net_device* dev, tx_desc_cmd * entry, cb_desc * cb_desc, struct sk_buff *skb);
void (* tx_fill_cmd_descriptor)(struct net_device* dev, struct tx_desc_cmd * entry, cb_desc * cb_desc, struct sk_buff *skb);
bool (* rx_query_status_descriptor)(struct net_device* dev, struct rtllib_rx_stats* stats, rx_desc *pdesc, struct sk_buff* skb);
bool (* rx_command_packet_handler)(struct net_device *dev, struct sk_buff* skb, rx_desc *pdesc);
void (* stop_adapter)(struct net_device *dev, bool reset);
Expand Down

0 comments on commit 3215312

Please sign in to comment.