summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl
diff options
context:
space:
mode:
authorLuis R. Rodriguez2011-03-11 03:55:38 +0100
committerGreg Kroah-Hartman2011-03-11 23:31:50 +0100
commit69c44f42f6467441cc413ccbabbb9deeb82d16c4 (patch)
treea9976e2be77a2af8839394aa577235c76acdc840 /drivers/staging/ath6kl
parentstaging: ath6kl: remove-typedef AR6K_GMBOX_CTRL_REGISTERS (diff)
downloadkernel-qcow2-linux-69c44f42f6467441cc413ccbabbb9deeb82d16c4.tar.gz
kernel-qcow2-linux-69c44f42f6467441cc413ccbabbb9deeb82d16c4.tar.xz
kernel-qcow2-linux-69c44f42f6467441cc413ccbabbb9deeb82d16c4.zip
staging: ath6kl: remove-typedef AR6K_GMBOX_INFO
remove-typedef -s AR6K_GMBOX_INFO \ "struct ar6k_gmbox_info" drivers/staging/ath6kl/ Cc: Naveen Singh <naveen.singh@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/htc2/AR6000/ar6k.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/htc2/AR6000/ar6k.h b/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
index e8b638c5ddfc..0bee46af9009 100644
--- a/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
+++ b/drivers/staging/ath6kl/htc2/AR6000/ar6k.h
@@ -96,14 +96,14 @@ struct ar6k_async_reg_io_buffer {
u8 _Pad2[A_CACHE_LINE_PAD];
};
-typedef struct _AR6K_GMBOX_INFO {
+struct ar6k_gmbox_info {
void *pProtocolContext;
int (*pMessagePendingCallBack)(void *pContext, u8 LookAheadBytes[], int ValidBytes);
int (*pCreditsPendingCallback)(void *pContext, int NumCredits, bool CreditIRQEnabled);
void (*pTargetFailureCallback)(void *pContext, int Status);
void (*pStateDumpCallback)(void *pContext);
bool CreditCountIRQEnabled;
-} AR6K_GMBOX_INFO;
+};
struct ar6k_device {
A_MUTEX_T Lock;
@@ -137,7 +137,7 @@ struct ar6k_device {
bool ScatterIsVirtual;
int MaxRecvBundleSize;
int MaxSendBundleSize;
- AR6K_GMBOX_INFO GMboxInfo;
+ struct ar6k_gmbox_info GMboxInfo;
bool GMboxEnabled;
struct ar6k_gmbox_ctrl_registers GMboxControlRegisters;
int RecheckIRQStatusCnt;