mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
ar9280SetAntennaSwitch() was using the AR5416 chainmasks (3 chains)
rather than the AR9280 chainmasks (2 chains)
This commit is contained in:
parent
1161b88d4a
commit
1e659efff7
1 changed files with 2 additions and 2 deletions
|
|
@ -717,8 +717,8 @@ ar9280SetAntennaSwitch(struct ath_hal *ah, HAL_ANT_SETTING settings)
|
|||
case HAL_ANT_VARIABLE:
|
||||
/* Restore original chainmask settings */
|
||||
/* XXX */
|
||||
ahp->ah_tx_chainmask = AR5416_DEFAULT_TXCHAINMASK;
|
||||
ahp->ah_rx_chainmask = AR5416_DEFAULT_RXCHAINMASK;
|
||||
ahp->ah_tx_chainmask = AR9280_DEFAULT_TXCHAINMASK;
|
||||
ahp->ah_rx_chainmask = AR9280_DEFAULT_RXCHAINMASK;
|
||||
break;
|
||||
}
|
||||
return AH_TRUE;
|
||||
|
|
|
|||
Loading…
Reference in a new issue