aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2015-11-07 00:51:51 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2015-11-07 00:51:51 +0000
commitdccb3981eb1ec7c2d01933598f9f4e50328cfaca (patch)
tree8e266ac284ea6ef545329f9b1009bf2896c0ded9 /sys/dev/ath
parentb577e693aa898b1a01038c0c011e5ddfcff9b97f (diff)
downloadsrc-dccb3981eb1ec7c2d01933598f9f4e50328cfaca.tar.gz
src-dccb3981eb1ec7c2d01933598f9f4e50328cfaca.zip
ath(4) - reflect whether this is a full or fast channel change.
It's no longer "outdoor."
Notes
Notes: svn path=/head/; revision=290474
Diffstat (limited to 'sys/dev/ath')
-rw-r--r--sys/dev/ath/if_athvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index 1af99aa9c334..e3d414b3fd03 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -1035,8 +1035,8 @@ void ath_intr(void *);
*/
#define ath_hal_detach(_ah) \
((*(_ah)->ah_detach)((_ah)))
-#define ath_hal_reset(_ah, _opmode, _chan, _outdoor, _pstatus) \
- ((*(_ah)->ah_reset)((_ah), (_opmode), (_chan), (_outdoor), (_pstatus)))
+#define ath_hal_reset(_ah, _opmode, _chan, _fullreset, _pstatus) \
+ ((*(_ah)->ah_reset)((_ah), (_opmode), (_chan), (_fullreset), (_pstatus)))
#define ath_hal_macversion(_ah) \
(((_ah)->ah_macVersion << 4) | ((_ah)->ah_macRev))
#define ath_hal_getratetable(_ah, _mode) \