From: Kuninori Morimoto Date: Wed, 19 Oct 2022 00:37:07 +0000 (+0000) Subject: ASoC: soc-dapm.c: numerical order for dapm_up_seq X-Git-Tag: v6.6.7~3823^2^2~166^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f5ac87e83e0786197d4aba9c5071ff2dd8b6ad3;p=platform%2Fkernel%2Flinux-starfive.git ASoC: soc-dapm.c: numerical order for dapm_up_seq dapm_up_seq is arranged in numerical order, but _dai_link is out of order. This patch tidyup it. Signed-off-by: Kuninori Morimoto Reviewed-by: Amadeusz Sławiński Link: https://lore.kernel.org/r/87zgdssl70.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index ddaa079cfe5c..35edcb632bf5 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -71,9 +71,9 @@ static int dapm_up_seq[] = { [snd_soc_dapm_pinctrl] = 2, [snd_soc_dapm_clock_supply] = 2, [snd_soc_dapm_supply] = 3, + [snd_soc_dapm_dai_link] = 3, [snd_soc_dapm_micbias] = 4, [snd_soc_dapm_vmid] = 4, - [snd_soc_dapm_dai_link] = 3, [snd_soc_dapm_dai_in] = 5, [snd_soc_dapm_dai_out] = 5, [snd_soc_dapm_aif_in] = 5,