ASoC: tas2770: Add missing bias level power states
authorDan Murphy <dmurphy@ti.com>
Fri, 18 Sep 2020 19:05:41 +0000 (14:05 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 21 Sep 2020 19:40:52 +0000 (20:40 +0100)
Add the BIAS_STANDBY and BIAS_PREPARE to the set_bias_level or else the
driver will return -EINVAL which is not correct as they are valid
states.

Fixes: 1a476abc723e6 ("tas2770: add tas2770 smart PA kernel driver")
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Link: https://lore.kernel.org/r/20200918190548.12598-2-dmurphy@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2770.c

index 03d7ad1885b819cde884565183d1f995cbb66589..7c6f61946ab3928ab55a660fa15be98383c472ca 100644 (file)
@@ -57,7 +57,12 @@ static int tas2770_set_bias_level(struct snd_soc_component *component,
                        TAS2770_PWR_CTRL_MASK,
                        TAS2770_PWR_CTRL_ACTIVE);
                break;
-
+       case SND_SOC_BIAS_STANDBY:
+       case SND_SOC_BIAS_PREPARE:
+               snd_soc_component_update_bits(component,
+                       TAS2770_PWR_CTRL,
+                       TAS2770_PWR_CTRL_MASK, TAS2770_PWR_CTRL_MUTE);
+               break;
        case SND_SOC_BIAS_OFF:
                snd_soc_component_update_bits(component,
                        TAS2770_PWR_CTRL,