Date: Sat, 7 Nov 2015 00:51:51 +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: r290474 - head/sys/dev/ath Message-ID: <201511070051.tA70pp7Z023945@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Sat Nov 7 00:51:51 2015 New Revision: 290474 URL: https://svnweb.freebsd.org/changeset/base/290474 Log: ath(4) - reflect whether this is a full or fast channel change. It's no longer "outdoor." Modified: head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_athvar.h ============================================================================== --- head/sys/dev/ath/if_athvar.h Sat Nov 7 00:18:14 2015 (r290473) +++ head/sys/dev/ath/if_athvar.h Sat Nov 7 00:51:51 2015 (r290474) @@ -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) \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511070051.tA70pp7Z023945>