summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@nokia.com>2009-10-02 06:17:37 (GMT)
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-10-02 10:24:21 (GMT)
commitce3e3737a3361e0c7030f8598eec36bb82050de6 (patch)
treed685ea6de1475e3e1b80a662e62fda3f76898d89 /sound
parent88439ac793934a47f47ad285656b63d09f5937c8 (diff)
downloadlinux-fsl-qoriq-ce3e3737a3361e0c7030f8598eec36bb82050de6.tar.xz
ASoC: Improve the debugfs hierarchy
Change the way the debugfs entries are created: If the codec->dev is valid, than use: debugfs/asoc/{codec->name}.{dev_name(codec->dev)}/ if the codec->dev is NULL: debugfs/asoc/{codec->name}/ as root for the debugfs entries. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-core.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index e4ab36d..1dec9d2 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1256,8 +1256,12 @@ static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
{
char codec_root[128];
- snprintf(codec_root, sizeof(codec_root),
- "%s-%s", dev_name(codec->socdev->dev), codec->name);
+ if (codec->dev)
+ snprintf(codec_root, sizeof(codec_root),
+ "%s.%s", codec->name, dev_name(codec->dev));
+ else
+ snprintf(codec_root, sizeof(codec_root),
+ "%s", codec->name);
codec->debugfs_codec_root = debugfs_create_dir(codec_root,
debugfs_root);