aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/os/linux/ar6000_drv.c
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2011-03-14 13:58:58 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-14 14:58:50 -0400
commit6ca0f664e18f967dad2ff47c4de447b1d37fbdfc (patch)
tree1c2cb79baa60a51de675c4cd79a8d87e2ebe447d /drivers/staging/ath6kl/os/linux/ar6000_drv.c
parentc6528e2f0dca96ee2c4bf7f1600d9537fad88197 (diff)
ath6kl: remove-typedef HTC_PACKET_QUEUE
remove-typedef -s HTC_PACKET_QUEUE \ "struct htc_packet_queue" drivers/staging/ath6kl/ Tested-by: Naveen Singh <nsingh@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/ath6kl/os/linux/ar6000_drv.c')
-rw-r--r--drivers/staging/ath6kl/os/linux/ar6000_drv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/ath6kl/os/linux/ar6000_drv.c b/drivers/staging/ath6kl/os/linux/ar6000_drv.c
index ebfc7fdb53a..fab1e02f23f 100644
--- a/drivers/staging/ath6kl/os/linux/ar6000_drv.c
+++ b/drivers/staging/ath6kl/os/linux/ar6000_drv.c
@@ -317,7 +317,7 @@ static void ar6000_rx(void *Context, struct htc_packet *pPacket);
317 317
318static void ar6000_rx_refill(void *Context,HTC_ENDPOINT_ID Endpoint); 318static void ar6000_rx_refill(void *Context,HTC_ENDPOINT_ID Endpoint);
319 319
320static void ar6000_tx_complete(void *Context, HTC_PACKET_QUEUE *pPackets); 320static void ar6000_tx_complete(void *Context, struct htc_packet_queue *pPackets);
321 321
322static HTC_SEND_FULL_ACTION ar6000_tx_queue_full(void *Context, struct htc_packet *pPacket); 322static HTC_SEND_FULL_ACTION ar6000_tx_queue_full(void *Context, struct htc_packet *pPacket);
323 323
@@ -3461,7 +3461,7 @@ static HTC_SEND_FULL_ACTION ar6000_tx_queue_full(void *Context, struct htc_packe
3461 3461
3462 3462
3463static void 3463static void
3464ar6000_tx_complete(void *Context, HTC_PACKET_QUEUE *pPacketQueue) 3464ar6000_tx_complete(void *Context, struct htc_packet_queue *pPacketQueue)
3465{ 3465{
3466 AR_SOFTC_T *ar = (AR_SOFTC_T *)Context; 3466 AR_SOFTC_T *ar = (AR_SOFTC_T *)Context;
3467 u32 mapNo = 0; 3467 u32 mapNo = 0;
@@ -3992,7 +3992,7 @@ ar6000_rx_refill(void *Context, HTC_ENDPOINT_ID Endpoint)
3992 int RxBuffers; 3992 int RxBuffers;
3993 int buffersToRefill; 3993 int buffersToRefill;
3994 struct htc_packet *pPacket; 3994 struct htc_packet *pPacket;
3995 HTC_PACKET_QUEUE queue; 3995 struct htc_packet_queue queue;
3996 3996
3997 buffersToRefill = (int)AR6000_MAX_RX_BUFFERS - 3997 buffersToRefill = (int)AR6000_MAX_RX_BUFFERS -
3998 HTCGetNumRecvBuffers(ar->arHtcTarget, Endpoint); 3998 HTCGetNumRecvBuffers(ar->arHtcTarget, Endpoint);
@@ -6323,7 +6323,7 @@ static void DoHTCSendPktsTest(AR_SOFTC_T *ar, int MapNo, HTC_ENDPOINT_ID eid, st
6323 struct sk_buff *new_skb; 6323 struct sk_buff *new_skb;
6324 int i; 6324 int i;
6325 int pkts = 0; 6325 int pkts = 0;
6326 HTC_PACKET_QUEUE pktQueue; 6326 struct htc_packet_queue pktQueue;
6327 EPPING_HEADER *eppingHdr; 6327 EPPING_HEADER *eppingHdr;
6328 6328
6329 eppingHdr = A_NETBUF_DATA(dupskb); 6329 eppingHdr = A_NETBUF_DATA(dupskb);