mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix a bad merge from a previous commit.
This commit is contained in:
parent
0293774898
commit
8143e16401
1 changed files with 6 additions and 4 deletions
|
|
@ -126,10 +126,12 @@ v9287EepromSet(struct ath_hal *ah, int param, int v)
|
|||
HAL_EEPROM_9287 *ee = AH_PRIVATE(ah)->ah_eeprom;
|
||||
|
||||
switch (param) {
|
||||
case AR_EEP_ANTGAINMAX_2:
|
||||
ee->ee_antennaGainMax[1] = (int8_t) v;
|
||||
return HAL_OK;
|
||||
return HAL_EINVAL;
|
||||
case AR_EEP_ANTGAINMAX_2:
|
||||
ee->ee_antennaGainMax[1] = (int8_t) v;
|
||||
return HAL_OK;
|
||||
default:
|
||||
return HAL_EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static HAL_BOOL
|
||||
|
|
|
|||
Loading…
Reference in a new issue