diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-08-12 15:49:52 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-08-15 14:50:28 +0100 |
commit | 6ba6c9c3414b95c3ed50d529fb0efa744ed45761 (patch) | |
tree | 204fec106f93808bba69d395ac7d921d03f490a0 /sound/soc/soc-core.c | |
parent | 13cb61f8c261ca6a218f83f4ee9c3bd5cfc223a5 (diff) | |
download | blackbird-op-linux-6ba6c9c3414b95c3ed50d529fb0efa744ed45761.tar.gz blackbird-op-linux-6ba6c9c3414b95c3ed50d529fb0efa744ed45761.zip |
ASoC: Remove redundant device name from debugfs directory
Since the core now includes deduplication in the name of CODEC
devices there's no need to add extra for the debugfs directory name.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index ac0fa228c7b3..cea0fe488623 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -234,16 +234,7 @@ static const struct file_operations codec_reg_fops = { static void soc_init_codec_debugfs(struct snd_soc_codec *codec) { - char codec_root[128]; - - 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, + codec->debugfs_codec_root = debugfs_create_dir(codec->name , debugfs_root); if (!codec->debugfs_codec_root) { printk(KERN_WARNING |