summaryrefslogtreecommitdiffstats
path: root/drivers/staging/csr/csr_wifi_fsm_types.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 12:05:42 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 12:05:42 -0700
commit26a6b2e1688bc154a16778851d710e90b62f715e (patch)
tree556fe1919c94aa4d4bac68d3e5dfbc40cfdeec10 /drivers/staging/csr/csr_wifi_fsm_types.h
parentab2b8c7383caf6b071930e4e1d4a8b4bf1708f38 (diff)
downloadop-kernel-dev-26a6b2e1688bc154a16778851d710e90b62f715e.zip
op-kernel-dev-26a6b2e1688bc154a16778851d710e90b62f715e.tar.gz
staging: csr: remove CsrUint32 typedef
Use the in-kernel u32 type instead. Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com> Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com> Cc: Riku Mettälä <riku.mettala@bluegiga.com> Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/csr/csr_wifi_fsm_types.h')
-rw-r--r--drivers/staging/csr/csr_wifi_fsm_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/csr/csr_wifi_fsm_types.h b/drivers/staging/csr/csr_wifi_fsm_types.h
index 5bc6987..63b69fe 100644
--- a/drivers/staging/csr/csr_wifi_fsm_types.h
+++ b/drivers/staging/csr/csr_wifi_fsm_types.h
@@ -79,7 +79,7 @@ typedef struct CsrWifiFsmTimer
struct CsrWifiFsmTimer *next;
CsrWifiFsmTimerId timerid;
- CsrUint32 timeoutTimeMs;
+ u32 timeoutTimeMs;
} CsrWifiFsmTimer;
@@ -202,7 +202,7 @@ typedef void (*CsrWifiFsmDumpFnPtr)(CsrWifiFsmContext *context, void *fsmData);
*/
typedef struct
{
- CsrUint32 eventid;
+ u32 eventid;
CsrWifiFsmTransitionFnPtr transition;
#ifdef CSR_LOG_ENABLE
const CsrCharString *transitionName;
@@ -253,7 +253,7 @@ typedef struct
typedef struct
{
const CsrCharString *processName;
- const CsrUint32 processId;
+ const u32 processId;
const CsrWifiFsmTransitionFunctionTable transitionTable;
const CsrWifiFsmTableEntry unhandledTransitions;
const CsrWifiFsmTableEntry ignoreFunctions;
@@ -389,7 +389,7 @@ struct CsrWifiFsmContext
#ifdef CSR_WIFI_FSM_MUTEX_ENABLE
CsrMutexHandle externalEventQueueLock; /* The external event queue mutex */
#endif
- CsrUint32 timeOffset; /* Amount to adjust the TimeOfDayMs by */
+ u32 timeOffset; /* Amount to adjust the TimeOfDayMs by */
CsrWifiFsmTimerList timerQueue; /* The internal timer queue */
CsrBool useTempSaveList; /* Should the temp save list be used */
CsrWifiFsmEventList tempSaveList; /* The temp save event queue */
@@ -409,7 +409,7 @@ struct CsrWifiFsmContext
#ifndef CSR_WIFI_FSM_SCHEDULER_DISABLED
CsrSchedTid schedTimerId; /* Scheduler TimerId for use in Scheduler Tasks */
- CsrUint32 schedTimerNexttimeoutMs; /* Next timeout time for the current timer */
+ u32 schedTimerNexttimeoutMs; /* Next timeout time for the current timer */
#endif
#ifdef CSR_WIFI_FSM_MUTEX_ENABLE
OpenPOWER on IntegriCloud