diff options
author | adrian <adrian@FreeBSD.org> | 2013-06-12 15:23:17 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2013-06-12 15:23:17 +0000 |
commit | 29fa0ac530bb04c4601ecd54027ea264399741c2 (patch) | |
tree | 45a823621fe7585bb58329a771d55b1e67f2497f /sys/contrib | |
parent | 4537d8ddce6d9eb7b2393904c6fba1fe76d4f51b (diff) | |
download | FreeBSD-src-29fa0ac530bb04c4601ecd54027ea264399741c2.zip FreeBSD-src-29fa0ac530bb04c4601ecd54027ea264399741c2.tar.gz |
Tie in the LNA diversity configuration functions into the HAL.
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c index 29b4c85..5972c53 100644 --- a/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c +++ b/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c @@ -235,6 +235,12 @@ ar9300_attach_freebsd_ops(struct ath_hal *ah) ah->ah_setChainMasks = ar9300SetChainMasks; /* ah_get11nRxClear */ /* ah_set11nRxClear */ + + /* bluetooth coexistence functions */ + + /* LNA diversity functions */ + ah->ah_divLnaConfGet = ar9300_ant_div_comb_get_config; + ah->ah_divLnaConfSet = ar9300_ant_div_comb_set_config; } HAL_BOOL |