diff options
author | adrian <adrian@FreeBSD.org> | 2013-06-05 22:23:13 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2013-06-05 22:23:13 +0000 |
commit | aa6dbdbade62d686e09845d5f04d32f31820bc9f (patch) | |
tree | 249ceaeab3baaf744b7c57efd1030bd1ecaea3e1 /sys/dev/ath/ath_hal | |
parent | 87c3bc4a47ab091af9cd5ab1622b2948b99e00ea (diff) | |
download | FreeBSD-src-aa6dbdbade62d686e09845d5f04d32f31820bc9f.zip FreeBSD-src-aa6dbdbade62d686e09845d5f04d32f31820bc9f.tar.gz |
Enable slow diversity combining for the AR9285.
Now that I understand what's going on - and the RX antenna array maps
to what the receive LNA configuration actually is - I feel comfortable
in enabling this.
If people do have issues with this, there's enough debugging now available
that we have a chance to diagnose it without writing it up as 'weird
crap.'
Tested:
* AR9285 STA w/ diversity combining enabled in EEPROM
TODO:
* (More) testing in hostap mode
Diffstat (limited to 'sys/dev/ath/ath_hal')
-rw-r--r-- | sys/dev/ath/ath_hal/ar9002/ar9285_phy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c b/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c index e4e73d4..b28b97f 100644 --- a/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c +++ b/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c @@ -87,8 +87,10 @@ ar9285_check_div_comb(struct ath_hal *ah) HAL_EEPROM_v4k *ee = AH_PRIVATE(ah)->ah_eeprom; const MODAL_EEP4K_HEADER *pModal = &ee->ee_base.modalHeader; +#if 0 /* For now, simply disable this until it's better debugged. -adrian */ return AH_FALSE; +#endif if (! AR_SREV_KITE(ah)) return AH_FALSE; |