|
@@ -2901,7 +2901,7 @@ static uint32_t get_iir_band_coeff(struct snd_soc_component *component,
|
|
|
|
|
|
value |= ((snd_soc_component_read(component,
|
|
|
(BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL +
|
|
|
- 16 * iir_idx)) & 0x3F) << 24);
|
|
|
+ 0x80 * iir_idx)) & 0x3F) << 24);
|
|
|
|
|
|
return value;
|
|
|
}
|
|
@@ -2988,7 +2988,7 @@ static int rx_macro_iir_band_audio_mixer_put(struct snd_kcontrol *kcontrol,
|
|
|
* Updates addr automatically for each B2 write
|
|
|
*/
|
|
|
snd_soc_component_write(component,
|
|
|
- (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 16 * iir_idx),
|
|
|
+ (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
|
|
|
(band_idx * BAND_MAX * sizeof(uint32_t)) & 0x7F);
|
|
|
|
|
|
|