Commit bc27e89b authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef tx_desc to struct tx_desc

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent b0d7de73
...@@ -305,7 +305,7 @@ typedef struct _phy_cck_rx_status_report_819xpci ...@@ -305,7 +305,7 @@ typedef struct _phy_cck_rx_status_report_819xpci
#define PHY_RSSI_SLID_WIN_MAX 100 #define PHY_RSSI_SLID_WIN_MAX 100
#define PHY_Beacon_RSSI_SLID_WIN_MAX 10 #define PHY_Beacon_RSSI_SLID_WIN_MAX 10
typedef struct _tx_desc_819x_pci { struct tx_desc {
u16 PktSize; u16 PktSize;
u8 Offset; u8 Offset;
u8 Reserved1:3; u8 Reserved1:3;
...@@ -341,10 +341,10 @@ typedef struct _tx_desc_819x_pci { ...@@ -341,10 +341,10 @@ typedef struct _tx_desc_819x_pci {
u32 Reserved5; u32 Reserved5;
u32 Reserved6; u32 Reserved6;
u32 Reserved7; u32 Reserved7;
}tx_desc, *ptx_desc; };//, *ptx_desc;
typedef struct _tx_desc_cmd_819x_pci { typedef struct tx_desc_cmd_819x_pci {
u16 PktSize; u16 PktSize;
u8 Reserved1; u8 Reserved1;
u8 CmdType:3; u8 CmdType:3;
......
...@@ -1155,7 +1155,7 @@ u8 rtl8192_MapHwQueueToFirmwareQueue(u8 QueueID, u8 priority) ...@@ -1155,7 +1155,7 @@ u8 rtl8192_MapHwQueueToFirmwareQueue(u8 QueueID, u8 priority)
} }
void rtl8192_tx_fill_desc(struct net_device* dev, tx_desc * pdesc, cb_desc * cb_desc, struct sk_buff* skb) void rtl8192_tx_fill_desc(struct net_device* dev, struct tx_desc * pdesc, cb_desc * cb_desc, struct sk_buff* skb)
{ {
struct r8192_priv *priv = rtllib_priv(dev); struct r8192_priv *priv = rtllib_priv(dev);
dma_addr_t mapping = pci_map_single(priv->pdev, skb->data, skb->len, PCI_DMA_TODEVICE); dma_addr_t mapping = pci_map_single(priv->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
...@@ -1269,7 +1269,7 @@ void rtl8192_tx_fill_cmd_desc(struct net_device* dev, tx_desc_cmd * entry, ...@@ -1269,7 +1269,7 @@ void rtl8192_tx_fill_cmd_desc(struct net_device* dev, tx_desc_cmd * entry,
if (cb_desc->bCmdOrInit == DESC_PACKET_TYPE_INIT) { if (cb_desc->bCmdOrInit == DESC_PACKET_TYPE_INIT) {
entry->CmdInit = DESC_PACKET_TYPE_INIT; entry->CmdInit = DESC_PACKET_TYPE_INIT;
} else { } else {
tx_desc* entry_tmp = (tx_desc*)entry; struct tx_desc * entry_tmp = (struct tx_desc *)entry;
entry_tmp->CmdInit = DESC_PACKET_TYPE_NORMAL; entry_tmp->CmdInit = DESC_PACKET_TYPE_NORMAL;
entry_tmp->Offset = sizeof(struct tx_fwinfo_8190pci) + 8; entry_tmp->Offset = sizeof(struct tx_fwinfo_8190pci) + 8;
entry_tmp->PktSize = (u16)(cb_desc->pkt_size + entry_tmp->Offset); entry_tmp->PktSize = (u16)(cb_desc->pkt_size + entry_tmp->Offset);
......
...@@ -45,7 +45,7 @@ void rtl8192_get_eeprom_size(struct net_device* dev); ...@@ -45,7 +45,7 @@ void rtl8192_get_eeprom_size(struct net_device* dev);
bool rtl8192_adapter_start(struct net_device *dev); bool rtl8192_adapter_start(struct net_device *dev);
void rtl8192_link_change(struct net_device *dev); void rtl8192_link_change(struct net_device *dev);
void rtl8192_AllowAllDestAddr(struct net_device* dev, bool bAllowAllDA, bool WriteIntoReg); void rtl8192_AllowAllDestAddr(struct net_device* dev, bool bAllowAllDA, bool WriteIntoReg);
void rtl8192_tx_fill_desc(struct net_device* dev, tx_desc * pdesc, cb_desc * cb_desc, void rtl8192_tx_fill_desc(struct net_device* dev, struct tx_desc * pdesc, cb_desc * cb_desc,
struct sk_buff* skb); 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, tx_desc_cmd * entry,
cb_desc * cb_desc, struct sk_buff* skb); cb_desc * cb_desc, struct sk_buff* skb);
......
...@@ -800,7 +800,7 @@ void rtl8192_prepare_beacon(struct r8192_priv *priv) ...@@ -800,7 +800,7 @@ void rtl8192_prepare_beacon(struct r8192_priv *priv)
struct sk_buff *pskb = NULL, *pnewskb = NULL; struct sk_buff *pskb = NULL, *pnewskb = NULL;
cb_desc *tcb_desc = NULL; cb_desc *tcb_desc = NULL;
struct rtl8192_tx_ring *ring = NULL; struct rtl8192_tx_ring *ring = NULL;
tx_desc *pdesc = NULL; struct tx_desc *pdesc = NULL;
ring = &priv->tx_ring[BEACON_QUEUE]; ring = &priv->tx_ring[BEACON_QUEUE];
pskb = __skb_dequeue(&ring->queue); pskb = __skb_dequeue(&ring->queue);
...@@ -1884,7 +1884,7 @@ static void rtl8192_free_tx_ring(struct net_device *dev, unsigned int prio) ...@@ -1884,7 +1884,7 @@ static void rtl8192_free_tx_ring(struct net_device *dev, unsigned int prio)
struct rtl8192_tx_ring *ring = &priv->tx_ring[prio]; struct rtl8192_tx_ring *ring = &priv->tx_ring[prio];
while (skb_queue_len(&ring->queue)) { while (skb_queue_len(&ring->queue)) {
tx_desc *entry = &ring->desc[ring->idx]; struct tx_desc *entry = &ring->desc[ring->idx];
struct sk_buff *skb = __skb_dequeue(&ring->queue); struct sk_buff *skb = __skb_dequeue(&ring->queue);
pci_unmap_single(priv->pdev, le32_to_cpu(entry->TxBuffAddr), pci_unmap_single(priv->pdev, le32_to_cpu(entry->TxBuffAddr),
...@@ -1982,7 +1982,7 @@ void rtl8192_tx_isr(struct net_device *dev, int prio) ...@@ -1982,7 +1982,7 @@ void rtl8192_tx_isr(struct net_device *dev, int prio)
struct rtl8192_tx_ring *ring = &priv->tx_ring[prio]; struct rtl8192_tx_ring *ring = &priv->tx_ring[prio];
while (skb_queue_len(&ring->queue)) { while (skb_queue_len(&ring->queue)) {
tx_desc *entry = &ring->desc[ring->idx]; struct tx_desc *entry = &ring->desc[ring->idx];
struct sk_buff *skb; struct sk_buff *skb;
if (prio != BEACON_QUEUE) { if (prio != BEACON_QUEUE) {
...@@ -2034,7 +2034,7 @@ short rtl8192_tx(struct net_device *dev, struct sk_buff* skb) ...@@ -2034,7 +2034,7 @@ short rtl8192_tx(struct net_device *dev, struct sk_buff* skb)
struct rtl8192_tx_ring *ring; struct rtl8192_tx_ring *ring;
unsigned long flags; unsigned long flags;
cb_desc *tcb_desc = (cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE); cb_desc *tcb_desc = (cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
tx_desc *pdesc = NULL; struct tx_desc *pdesc = NULL;
struct rtllib_hdr_1addr * header = NULL; struct rtllib_hdr_1addr * header = NULL;
u16 fc=0, type=0,stype=0; u16 fc=0, type=0,stype=0;
bool multi_addr=false,broad_addr=false,uni_addr=false; bool multi_addr=false,broad_addr=false,uni_addr=false;
...@@ -2150,7 +2150,7 @@ static int rtl8192_alloc_tx_desc_ring(struct net_device *dev, ...@@ -2150,7 +2150,7 @@ static int rtl8192_alloc_tx_desc_ring(struct net_device *dev,
unsigned int prio, unsigned int entries) unsigned int prio, unsigned int entries)
{ {
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev); struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
tx_desc *ring; struct tx_desc *ring;
dma_addr_t dma; dma_addr_t dma;
int i; int i;
...@@ -2225,7 +2225,7 @@ void rtl8192_pci_resetdescring(struct net_device *dev) ...@@ -2225,7 +2225,7 @@ void rtl8192_pci_resetdescring(struct net_device *dev)
struct rtl8192_tx_ring *ring = &priv->tx_ring[i]; struct rtl8192_tx_ring *ring = &priv->tx_ring[i];
while (skb_queue_len(&ring->queue)) { while (skb_queue_len(&ring->queue)) {
tx_desc *entry = &ring->desc[ring->idx]; struct tx_desc *entry = &ring->desc[ring->idx];
struct sk_buff *skb = __skb_dequeue(&ring->queue); struct sk_buff *skb = __skb_dequeue(&ring->queue);
pci_unmap_single(priv->pdev, le32_to_cpu(entry->TxBuffAddr), pci_unmap_single(priv->pdev, le32_to_cpu(entry->TxBuffAddr),
......
...@@ -519,7 +519,7 @@ typedef struct _tx_ring{ ...@@ -519,7 +519,7 @@ typedef struct _tx_ring{
}__attribute__ ((packed)) tx_ring, * ptx_ring; }__attribute__ ((packed)) tx_ring, * ptx_ring;
struct rtl8192_tx_ring { struct rtl8192_tx_ring {
tx_desc *desc; struct tx_desc *desc;
dma_addr_t dma; dma_addr_t dma;
unsigned int idx; unsigned int idx;
unsigned int entries; unsigned int entries;
...@@ -535,7 +535,7 @@ struct rtl819x_ops{ ...@@ -535,7 +535,7 @@ struct rtl819x_ops{
void (* init_before_adapter_start)(struct net_device* dev); void (* init_before_adapter_start)(struct net_device* dev);
bool (* initialize_adapter)(struct net_device* dev); bool (* initialize_adapter)(struct net_device* dev);
void (*link_change)(struct net_device* dev); void (*link_change)(struct net_device* dev);
void (* tx_fill_descriptor)(struct net_device* dev, tx_desc * tx_desc, cb_desc * cb_desc, struct sk_buff *skb); 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, 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_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); bool (* rx_command_packet_handler)(struct net_device *dev, struct sk_buff* skb, rx_desc *pdesc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment