123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- #ifndef _QDF_TIMER_H
- #define _QDF_TIMER_H
- #include <qdf_types.h>
- #include <i_qdf_timer.h>
- typedef __qdf_timer_t qdf_timer_t;
- static inline void qdf_timer_init(qdf_handle_t hdl, qdf_timer_t *timer,
- qdf_timer_func_t func, void *arg,
- QDF_TIMER_TYPE type)
- {
- __qdf_timer_init(hdl, timer, func, arg, type);
- }
- static inline void
- qdf_timer_start(qdf_timer_t *timer, int msec)
- {
- __qdf_timer_start(timer, msec);
- }
- static inline void qdf_timer_mod(qdf_timer_t *timer, int msec)
- {
- __qdf_timer_mod(timer, msec);
- }
- static inline bool qdf_timer_stop(qdf_timer_t *timer)
- {
- return __qdf_timer_stop(timer);
- }
- static inline bool qdf_timer_sync_cancel(qdf_timer_t *timer)
- {
- return __qdf_timer_sync_cancel(timer);
- }
- static inline void qdf_timer_free(qdf_timer_t *timer)
- {
- __qdf_timer_free(timer);
- }
- #endif
|