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

Adrian Chadd adrian at FreeBSD.org
Mon Aug 8 15:42:37 UTC 2011


Author: adrian
Date: Mon Aug  8 15:42:37 2011
New Revision: 224715
URL: http://svn.freebsd.org/changeset/base/224715

Log:
  .. and add a missing bracket.
  
  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 15:41:03 2011	(r224714)
+++ head/sys/dev/ath/if_athvar.h	Mon Aug  8 15:42:37 2011	(r224715)
@@ -713,7 +713,7 @@ void	ath_intr(void *);
 #define	ath_hal_procradarevent(_ah, _rxs, _fulltsf, _buf, _event) \
 	((*(_ah)->ah_procRadarEvent)((_ah), (_rxs), (_fulltsf), (_buf), (_event)))
 #define	ath_hal_is_fast_clock_enabled(_ah) \
-	((*(_ah)->ah_isFastClockEnabled((_ah))
+	((*(_ah)->ah_isFastClockEnabled)((_ah))
 
 #define ath_hal_gpioCfgOutput(_ah, _gpio, _type) \
         ((*(_ah)->ah_gpioCfgOutput)((_ah), (_gpio), (_type)))


More information about the svn-src-all mailing list