From 6bd78ef4033efbab2b9123719e020ba57d11eabb Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Mon, 8 Aug 2011 15:42:37 +0000 Subject: [PATCH] .. and add a missing bracket. Approved by: re (kib, blanket) --- sys/dev/ath/if_athvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h index 9657a5e72e0e..2931f89e6250 100644 --- a/sys/dev/ath/if_athvar.h +++ b/sys/dev/ath/if_athvar.h @@ -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)))