From: Kuninori Morimoto Date: Fri, 11 Jul 2025 02:27:19 +0000 (+0000) Subject: ASoC: samsung: littlemill: don't set dapm->bias_level directly X-Git-Tag: block-6.17-20250808~24^2^2~15^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f00e06296ba3f0d8440030afe8cc2258758b7af7;p=linux-block.git ASoC: samsung: littlemill: 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 Link: https://patch.msgid.link/87ldov4g3c.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/samsung/littlemill.c b/sound/soc/samsung/littlemill.c index 5a02aac9b423..c8b06894ac88 100644 --- a/sound/soc/samsung/littlemill.c +++ b/sound/soc/samsung/littlemill.c @@ -95,8 +95,6 @@ static int littlemill_set_bias_level_post(struct snd_soc_card *card, break; } - dapm->bias_level = level; - return 0; }