Date: Sun, 27 Apr 2014 23:37:40 +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: r265034 - head/sys/contrib/dev/ath/ath_hal/ar9300 Message-ID: <201404272337.s3RNbe1K005439@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Sun Apr 27 23:37:39 2014 New Revision: 265034 URL: http://svnweb.freebsd.org/changeset/base/265034 Log: Note that the AR9380 and later hardware supports MYBEACON. (Yes, I said AR5416 in the committed code. It's still strictly true.) Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c ============================================================================== --- head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c Sun Apr 27 23:37:03 2014 (r265033) +++ head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c Sun Apr 27 23:37:39 2014 (r265034) @@ -2934,6 +2934,10 @@ ar9300_fill_capability_info(struct ath_h p_cap->halRxUsingLnaMixing = AH_TRUE; } + /* + * AR5416 and later NICs support MYBEACON filtering. + */ + p_cap->halRxDoMyBeacon = AH_TRUE; #if ATH_WOW_OFFLOAD if (AR_SREV_JUPITER_20_OR_LATER(ah) || AR_SREV_APHRODITE(ah)) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404272337.s3RNbe1K005439>