aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/mib.h
diff options
context:
space:
mode:
authorCharles Clément <caratorn@gmail.com>2010-06-02 09:52:02 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-06-18 10:19:04 -0700
commite3fd16d0819e3b316a4fe316e5f32032df61e9db (patch)
tree1482a36469e09bc28d9bfa93b89c1b9b8cbafb2f /drivers/staging/vt6655/mib.h
parentStaging: vt6655: remove custom UINT typedef (diff)
downloadlinux-dev-e3fd16d0819e3b316a4fe316e5f32032df61e9db.tar.xz
linux-dev-e3fd16d0819e3b316a4fe316e5f32032df61e9db.zip
Staging: vt6655: remove custom ULONG typedef
Signed-off-by: Charles Clément <caratorn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6655/mib.h')
-rw-r--r--drivers/staging/vt6655/mib.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/staging/vt6655/mib.h b/drivers/staging/vt6655/mib.h
index ffd5fb1d39d5..9f3f52114b56 100644
--- a/drivers/staging/vt6655/mib.h
+++ b/drivers/staging/vt6655/mib.h
@@ -39,7 +39,7 @@
//
typedef struct tagSDot11Counters {
- ULONG Length; // Length of structure
+ unsigned long Length; // Length of structure
ULONGLONG TransmittedFragmentCount;
ULONGLONG MulticastTransmittedFrameCount;
ULONGLONG FailedCount;
@@ -138,7 +138,7 @@ typedef struct tagSRmonCounter {
// Custom counter
//
typedef struct tagSCustomCounters {
- ULONG Length;
+ unsigned long Length;
ULONGLONG ullTsrAllOK;
@@ -177,7 +177,7 @@ typedef struct tagSCustomCounters {
// Custom counter
//
typedef struct tagSISRCounters {
- ULONG Length;
+ unsigned long Length;
DWORD dwIsrTx0OK;
DWORD dwIsrAC0TxOK;
@@ -324,15 +324,15 @@ typedef struct tagSStatCounter {
#ifdef Calcu_LinkQual
//Tx count:
- ULONG TxNoRetryOkCount; //success tx no retry !
- ULONG TxRetryOkCount; //success tx but retry !
- ULONG TxFailCount; //fail tx ?
+ unsigned long TxNoRetryOkCount; //success tx no retry !
+ unsigned long TxRetryOkCount; //success tx but retry !
+ unsigned long TxFailCount; //fail tx ?
//Rx count:
- ULONG RxOkCnt; //success rx !
- ULONG RxFcsErrCnt; //fail rx ?
+ unsigned long RxOkCnt; //success rx !
+ unsigned long RxFcsErrCnt; //fail rx ?
//statistic
- ULONG SignalStren;
- ULONG LinkQuality;
+ unsigned long SignalStren;
+ unsigned long LinkQuality;
#endif
} SStatCounter, *PSStatCounter;