Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Aug 2011 19:03:26 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r224720 - head/sys/dev/ath
Message-ID:  <201108081903.p78J3QKb059995@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Mon Aug  8 19:03:26 2011
New Revision: 224720
URL: http://svn.freebsd.org/changeset/base/224720

Log:
  And add another missing brace. Another pointy hat moment.
  This one however isn't used by any public code yet, so it
  didn't break the build.
  
  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 18:05:22 2011	(r224719)
+++ head/sys/dev/ath/if_athvar.h	Mon Aug  8 19:03:26 2011	(r224720)
@@ -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)))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108081903.p78J3QKb059995>