From 02a9696b0a3f8423612402df3cc451c041d0d950 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Fri, 23 Nov 2012 05:33:01 +0000 Subject: [PATCH] Add the HAL wrapper for settsf64. --- sys/dev/ath/if_athvar.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h index 38fd484132a..710d71e00ff 100644 --- a/sys/dev/ath/if_athvar.h +++ b/sys/dev/ath/if_athvar.h @@ -969,6 +969,8 @@ void ath_intr(void *); OS_REG_READ(_ah, AR_TSF_L32) #define ath_hal_gettsf64(_ah) \ ((*(_ah)->ah_getTsf64)((_ah))) +#define ath_hal_settsf64(_ah, _val) \ + ((*(_ah)->ah_setTsf64)((_ah), (_val))) #define ath_hal_resettsf(_ah) \ ((*(_ah)->ah_resetTsf)((_ah))) #define ath_hal_rxena(_ah) \