svn commit: r243425 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Fri Nov 23 05:33:01 UTC 2012


Author: adrian
Date: Fri Nov 23 05:33:01 2012
New Revision: 243425
URL: http://svnweb.freebsd.org/changeset/base/243425

Log:
  Add the HAL wrapper for settsf64.

Modified:
  head/sys/dev/ath/if_athvar.h

Modified: head/sys/dev/ath/if_athvar.h
==============================================================================
--- head/sys/dev/ath/if_athvar.h	Fri Nov 23 05:32:24 2012	(r243424)
+++ head/sys/dev/ath/if_athvar.h	Fri Nov 23 05:33:01 2012	(r243425)
@@ -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) \


More information about the svn-src-all mailing list