summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl
diff options
context:
space:
mode:
authorLuis R. Rodriguez2011-03-14 18:59:03 +0100
committerGreg Kroah-Hartman2011-03-14 19:58:52 +0100
commitfc5f36239385784ecd122392ac15f8a59df3bb82 (patch)
treeaa6f661376b28fcc6de31c497e581576ce112858 /drivers/staging/ath6kl
parentath6kl: remove-typedef HTC_TARGET (diff)
downloadkernel-qcow2-linux-fc5f36239385784ecd122392ac15f8a59df3bb82.tar.gz
kernel-qcow2-linux-fc5f36239385784ecd122392ac15f8a59df3bb82.tar.xz
kernel-qcow2-linux-fc5f36239385784ecd122392ac15f8a59df3bb82.zip
ath6kl: remove-typedef HTC_TX_PACKET_INFO
remove-typedef -s HTC_TX_PACKET_INFO \ "struct htc_tx_packet_info" 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')
-rw-r--r--drivers/staging/ath6kl/include/htc_packet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/include/htc_packet.h b/drivers/staging/ath6kl/include/htc_packet.h
index b6ecf7e4e46e..ba65c34ebc9c 100644
--- a/drivers/staging/ath6kl/include/htc_packet.h
+++ b/drivers/staging/ath6kl/include/htc_packet.h
@@ -48,12 +48,12 @@ typedef void (* HTC_PACKET_COMPLETION)(void *,struct htc_packet *);
typedef u16 HTC_TX_TAG;
-typedef struct _HTC_TX_PACKET_INFO {
+struct htc_tx_packet_info {
HTC_TX_TAG Tag; /* tag used to selective flush packets */
int CreditsUsed; /* number of credits used for this TX packet (HTC internal) */
u8 SendFlags; /* send flags (HTC internal) */
int SeqNo; /* internal seq no for debugging (HTC internal) */
-} HTC_TX_PACKET_INFO;
+};
#define HTC_TX_PACKET_TAG_ALL 0 /* a tag of zero is reserved and used to flush ALL packets */
#define HTC_TX_PACKET_TAG_INTERNAL 1 /* internal tags start here */
@@ -91,7 +91,7 @@ struct htc_packet {
HTC_ENDPOINT_ID Endpoint; /* endpoint that this packet was sent/recv'd from */
int Status; /* completion status */
union {
- HTC_TX_PACKET_INFO AsTx; /* Tx Packet specific info */
+ struct htc_tx_packet_info AsTx; /* Tx Packet specific info */
struct htc_rx_packet_info AsRx; /* Rx Packet specific info */
} PktInfo;