提交 84efc7ff 编写于 作者: L Luis R. Rodriguez 提交者: Greg Kroah-Hartman

ath6kl: remove-typedef HTC_ENDPOINT_STATS

remove-typedef -s HTC_ENDPOINT_STATS \
	"struct htc_endpoint_stats" drivers/staging/ath6kl/
Tested-by: NNaveen Singh <nsingh@atheros.com>
Signed-off-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 57c9d5b3
...@@ -524,7 +524,7 @@ static void HTCReportFailure(void *Context) ...@@ -524,7 +524,7 @@ static void HTCReportFailure(void *Context)
bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle, bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle,
HTC_ENDPOINT_ID Endpoint, HTC_ENDPOINT_ID Endpoint,
HTC_ENDPOINT_STAT_ACTION Action, HTC_ENDPOINT_STAT_ACTION Action,
HTC_ENDPOINT_STATS *pStats) struct htc_endpoint_stats *pStats)
{ {
#ifdef HTC_EP_STAT_PROFILING #ifdef HTC_EP_STAT_PROFILING
...@@ -556,12 +556,12 @@ bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle, ...@@ -556,12 +556,12 @@ bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle,
if (sample) { if (sample) {
A_ASSERT(pStats != NULL); A_ASSERT(pStats != NULL);
/* return the stats to the caller */ /* return the stats to the caller */
memcpy(pStats, &target->EndPoint[Endpoint].EndPointStats, sizeof(HTC_ENDPOINT_STATS)); memcpy(pStats, &target->EndPoint[Endpoint].EndPointStats, sizeof(struct htc_endpoint_stats));
} }
if (clearStats) { if (clearStats) {
/* reset stats */ /* reset stats */
A_MEMZERO(&target->EndPoint[Endpoint].EndPointStats, sizeof(HTC_ENDPOINT_STATS)); A_MEMZERO(&target->EndPoint[Endpoint].EndPointStats, sizeof(struct htc_endpoint_stats));
} }
UNLOCK_HTC_RX(target); UNLOCK_HTC_RX(target);
......
...@@ -83,7 +83,7 @@ struct htc_endpoint { ...@@ -83,7 +83,7 @@ struct htc_endpoint {
u8 SeqNo; /* TX seq no (helpful) for debugging */ u8 SeqNo; /* TX seq no (helpful) for debugging */
u32 LocalConnectionFlags; /* local connection flags */ u32 LocalConnectionFlags; /* local connection flags */
#ifdef HTC_EP_STAT_PROFILING #ifdef HTC_EP_STAT_PROFILING
HTC_ENDPOINT_STATS EndPointStats; /* endpoint statistics */ struct htc_endpoint_stats EndPointStats; /* endpoint statistics */
#endif #endif
}; };
......
...@@ -231,7 +231,7 @@ typedef enum _HTC_ENDPOINT_STAT_ACTION { ...@@ -231,7 +231,7 @@ typedef enum _HTC_ENDPOINT_STAT_ACTION {
} HTC_ENDPOINT_STAT_ACTION; } HTC_ENDPOINT_STAT_ACTION;
/* endpoint statistics */ /* endpoint statistics */
typedef struct _HTC_ENDPOINT_STATS { struct htc_endpoint_stats {
u32 TxCreditLowIndications; /* number of times the host set the credit-low flag in a send message on u32 TxCreditLowIndications; /* number of times the host set the credit-low flag in a send message on
this endpoint */ this endpoint */
u32 TxIssued; /* running count of total TX packets issued */ u32 TxIssued; /* running count of total TX packets issued */
...@@ -255,7 +255,7 @@ typedef struct _HTC_ENDPOINT_STATS { ...@@ -255,7 +255,7 @@ typedef struct _HTC_ENDPOINT_STATS {
u32 RxBundleIndFromHdr; /* count of the number of bundle indications from the HTC header */ u32 RxBundleIndFromHdr; /* count of the number of bundle indications from the HTC header */
u32 RxAllocThreshHit; /* count of the number of times the recv allocation threshhold was hit */ u32 RxAllocThreshHit; /* count of the number of times the recv allocation threshhold was hit */
u32 RxAllocThreshBytes; /* total number of bytes */ u32 RxAllocThreshBytes; /* total number of bytes */
} HTC_ENDPOINT_STATS; };
/* ------ Function Prototypes ------ */ /* ------ Function Prototypes ------ */
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
...@@ -472,7 +472,7 @@ void HTCIndicateActivityChange(HTC_HANDLE HTCHandle, ...@@ -472,7 +472,7 @@ void HTCIndicateActivityChange(HTC_HANDLE HTCHandle,
bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle, bool HTCGetEndpointStatistics(HTC_HANDLE HTCHandle,
HTC_ENDPOINT_ID Endpoint, HTC_ENDPOINT_ID Endpoint,
HTC_ENDPOINT_STAT_ACTION Action, HTC_ENDPOINT_STAT_ACTION Action,
HTC_ENDPOINT_STATS *pStats); struct htc_endpoint_stats *pStats);
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
@desc: Unblock HTC message reception @desc: Unblock HTC message reception
......
...@@ -3976,7 +3976,7 @@ int ar6000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) ...@@ -3976,7 +3976,7 @@ int ar6000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
#endif /* ATH_DEBUG_MODULE */ #endif /* ATH_DEBUG_MODULE */
#ifdef HTC_EP_STAT_PROFILING #ifdef HTC_EP_STAT_PROFILING
{ {
HTC_ENDPOINT_STATS stats; struct htc_endpoint_stats stats;
int i; int i;
for (i = 0; i < 5; i++) { for (i = 0; i < 5; i++) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册