diff options
| author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2025-07-11 02:27:12 +0000 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-07-13 22:36:48 +0100 |
| commit | 4421e455d2c33a86cdb19f3a0854a59de1542321 (patch) | |
| tree | 645bdbe27f7abc9b3b66d3942c55bf899350a523 | |
| parent | d2f423a4f4ecabd852c5ee5076596399488d4b75 (diff) | |
ASoC: samsung: tobermory: don't set dapm->bias_level directly
snd_soc_dapm_set_bias_level() (A) will set dapm->bias_level (a) inside.
No need to set it by each callback function. Remove it.
(A) static int snd_soc_dapm_set_bias_level(...)
{
...
/* success */
if (ret == 0)
(a) snd_soc_dapm_init_bias_level(dapm, level);
...
}
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://patch.msgid.link/87ms9b4g3j.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/samsung/tobermory.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/samsung/tobermory.c b/sound/soc/samsung/tobermory.c index d0f0c01365aa..1d0a782402f0 100644 --- a/sound/soc/samsung/tobermory.c +++ b/sound/soc/samsung/tobermory.c @@ -91,8 +91,6 @@ static int tobermory_set_bias_level_post(struct snd_soc_card *card, break; } - dapm->bias_level = level; - return 0; } |
