mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 15:11:31 +00:00
ASoC: rt721-sdca: Clean logically deadcode in rt721-sdca.c
As the same condition was checked in inner and outer if statements. The code never reaches the inner else statement. This issue was reported by Coverity Scan with CID = 1600271. Signed-off-by: Everest K.C. <everestkc@everestkc.com.np> Link: https://patch.msgid.link/20241008234422.5274-1-everestkc@everestkc.com.np Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
2aab7d186b
commit
8658c4eb9d
@ -611,12 +611,8 @@ static int rt721_sdca_dmic_set_gain_get(struct snd_kcontrol *kcontrol,
|
||||
|
||||
if (!adc_vol_flag) /* boost gain */
|
||||
ctl = regvalue / boost_step;
|
||||
else { /* ADC gain */
|
||||
if (adc_vol_flag)
|
||||
ctl = p->max - (((vol_max - regvalue) & 0xffff) / interval_offset);
|
||||
else
|
||||
ctl = p->max - (((0 - regvalue) & 0xffff) / interval_offset);
|
||||
}
|
||||
else /* ADC gain */
|
||||
ctl = p->max - (((vol_max - regvalue) & 0xffff) / interval_offset);
|
||||
|
||||
ucontrol->value.integer.value[i] = ctl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user