From ef068c6d9f5bf47589843f678c230c675879a69b Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Mon, 8 Aug 2011 19:03:26 +0000 Subject: [PATCH] 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) --- 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 2931f89e6250..5baa4ebd9401 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)))