Commit a2721fd9 authored by Mark Brown's avatar Mark Brown

ASoC: Add missing debugfs conditionals

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 20d66065
...@@ -1879,6 +1879,7 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card) ...@@ -1879,6 +1879,7 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes, snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
card->num_dapm_routes); card->num_dapm_routes);
#ifdef CONFIG_DEBUG_FS
card->dapm.debugfs_dapm = debugfs_create_dir("dapm", card->dapm.debugfs_dapm = debugfs_create_dir("dapm",
card->debugfs_card_root); card->debugfs_card_root);
if (!card->dapm.debugfs_dapm) if (!card->dapm.debugfs_dapm)
...@@ -1886,6 +1887,7 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card) ...@@ -1886,6 +1887,7 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
"Failed to create card DAPM debugfs directory\n"); "Failed to create card DAPM debugfs directory\n");
snd_soc_dapm_debugfs_init(&card->dapm); snd_soc_dapm_debugfs_init(&card->dapm);
#endif
snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname), snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
"%s", card->name); "%s", card->name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment