From: Mark Brown Date: Mon, 6 Jun 2011 18:03:34 +0000 (+0100) Subject: ASoC: Only provide a default bias level update for CODEC contexts X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cc4c670a416a36464443f465f0ddbdc9940d16dd;p=mv-sheeva.git ASoC: Only provide a default bias level update for CODEC contexts This allows the card driver to use the bias level variable more easily in multi component systems. Signed-off-by: Mark Brown Acked-by: Liam Girdwood --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 1682834f8c3..34106bca63c 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -146,10 +146,13 @@ static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm, if (ret != 0) goto out; - if (dapm->codec && dapm->codec->driver->set_bias_level) - ret = dapm->codec->driver->set_bias_level(dapm->codec, level); - else - dapm->bias_level = level; + if (dapm->codec) { + if (dapm->codec->driver->set_bias_level) + ret = dapm->codec->driver->set_bias_level(dapm->codec, + level); + else + dapm->bias_level = level; + } if (ret != 0) goto out;