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

Adrian Chadd adrian at FreeBSD.org
Mon Aug 8 15:41:04 UTC 2011


Author: adrian
Date: Mon Aug  8 15:41:03 2011
New Revision: 224714
URL: http://svn.freebsd.org/changeset/base/224714

Log:
  Fix method naming to match the reference HAL definition.
  
  Obtained from:	Atheros
  Approved by:	re (kib, blanket)

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

Modified: head/sys/dev/ath/if_athvar.h
==============================================================================
--- head/sys/dev/ath/if_athvar.h	Mon Aug  8 14:40:23 2011	(r224713)
+++ head/sys/dev/ath/if_athvar.h	Mon Aug  8 15:41:03 2011	(r224714)
@@ -712,7 +712,7 @@ void	ath_intr(void *);
 	((*(_ah)->ah_getDfsThresh)((_ah), (_param)))
 #define	ath_hal_procradarevent(_ah, _rxs, _fulltsf, _buf, _event) \
 	((*(_ah)->ah_procRadarEvent)((_ah), (_rxs), (_fulltsf), (_buf), (_event)))
-#define	ath_hal_isfastclockenabled(_ah) \
+#define	ath_hal_is_fast_clock_enabled(_ah) \
 	((*(_ah)->ah_isFastClockEnabled((_ah))
 
 #define ath_hal_gpioCfgOutput(_ah, _gpio, _type) \


More information about the svn-src-head mailing list