Date: Tue, 24 Jan 2012 06:07:06 +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: r230492 - head/sys/dev/ath Message-ID: <201201240607.q0O676pF060516@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Tue Jan 24 06:07:05 2012 New Revision: 230492 URL: http://svn.freebsd.org/changeset/base/230492 Log: Add a missing HAL method macro. I'm using this as part of some personal DFS radar stuff. Modified: head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_athvar.h ============================================================================== --- head/sys/dev/ath/if_athvar.h Mon Jan 23 22:30:09 2012 (r230491) +++ head/sys/dev/ath/if_athvar.h Tue Jan 24 06:07:05 2012 (r230492) @@ -968,8 +968,9 @@ void ath_intr(void *); ((*(_ah)->ah_gpioGet)((_ah), (_gpio))) #define ath_hal_gpiosetintr(_ah, _gpio, _b) \ ((*(_ah)->ah_gpioSetIntr)((_ah), (_gpio), (_b))) - #define ath_hal_radar_wait(_ah, _chan) \ ((*(_ah)->ah_radarWait)((_ah), (_chan))) +#define ath_hal_get_chan_ext_busy(_ah) \ + ((*(_ah)->ah_get11nExtBusy)((_ah))) #endif /* _DEV_ATH_ATHVAR_H */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201240607.q0O676pF060516>