1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-28 11:57:28 +00:00

Add an accessor macro for getting access to the default DFS parameters.

PR:		kern/170904
This commit is contained in:
Adrian Chadd 2012-08-24 17:37:12 +00:00
parent 3ae17a4ed8
commit 7d6b932c44
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239656

View File

@ -1185,6 +1185,8 @@ void ath_intr(void *);
((*(_ah)->ah_enableDfs)((_ah), (_param)))
#define ath_hal_getdfsthresh(_ah, _param) \
((*(_ah)->ah_getDfsThresh)((_ah), (_param)))
#define ath_hal_getdfsdefaultthresh(_ah, _param) \
((*(_ah)->ah_getDfsDefaultThresh)((_ah), (_param)))
#define ath_hal_procradarevent(_ah, _rxs, _fulltsf, _buf, _event) \
((*(_ah)->ah_procRadarEvent)((_ah), (_rxs), (_fulltsf), \
(_buf), (_event)))