diff mbox

ASoC: Failed to create component debugfs directory

Message ID CAOMZO5DVkrj3t63f5mkdotRCGsSoADdEH_pdmACwx_1K-vYPoQ@mail.gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Fabio Estevam Feb. 20, 2018, 4:40 p.m. UTC
On Tue, Feb 20, 2018 at 11:18 AM, Fabio Estevam <festevam@gmail.com> wrote:

> Any ideas why this second debugfs registration is being attempted?

The change below avoids the double component debugfs registration:

 static void soc_cleanup_component_debugfs(struct snd_soc_component *component)

Not sure what a proper fix would be.
diff mbox

Patch

diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 3987673..270109c 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -329,6 +329,8 @@  static void soc_init_component_debugfs(struct
snd_soc_component *component)

        if (component->init_debugfs)
                component->init_debugfs(component);
+
+       component->card->debugfs_card_root = NULL;
 }