ASoC: dapm: fix clock get name
authorJerome Brunet <jbrunet@baylibre.com>
Mon, 6 Nov 2023 10:37:09 +0000 (11:37 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 6 Nov 2023 10:57:03 +0000 (10:57 +0000)
The name currently used to get the clock includes the dapm prefix.
It should use the name as provided to the widget, without the prefix.

Fixes: 3caac759681e ("ASoC: soc-dapm.c: fixup snd_soc_dapm_new_control_unlocked() error handling")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Link: https://lore.kernel.org/r/20231106103712.703962-1-jbrunet@baylibre.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-dapm.c

index 4e2beda6f9bf2eb89a78096f8f46cdb1ac7e23dd..3844f777c87bbb30d8e80fb835bc646d80b19521 100644 (file)
@@ -3670,7 +3670,7 @@ snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
                dapm_pinctrl_event(w, NULL, SND_SOC_DAPM_POST_PMD);
                break;
        case snd_soc_dapm_clock_supply:
-               w->clk = devm_clk_get(dapm->dev, w->name);
+               w->clk = devm_clk_get(dapm->dev, widget->name);
                if (IS_ERR(w->clk)) {
                        ret = PTR_ERR(w->clk);
                        goto request_failed;