26 Aug
2020
26 Aug
'20
6:52 p.m.
On Wed, Aug 26, 2020 at 05:07:24PM +0200, Pavel Dobias wrote:
- /* don't allow change if component active */
- if (snd_soc_component_active(component)) {
return -EBUSY;
- }
AFAICT the filter only applies to the DAC/ADC but this is checking if the component is in use at all and there's bypass paths - we should only restrict this when the DAC and ADC are in use.
- if (mode > 1)
return -EINVAL;
- mode = mode ? MAX9867_CODECFLTR_MODE : 0;
Please write normal conditional statements to improve readability.