diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-12-05 04:20:42 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-12-05 12:40:29 +0000 |
commit | 3b6eed8deb37c349bffc7b3b4d722ce4023f8b11 (patch) | |
tree | aa972682672e2b358af34edba1ba7b980dad8c40 /sound/soc/soc-core.c | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
ASoC: don't use rtd->codec on soc_dev_attr_is_visible()
rtd->codec will be removed soon.
checking rtd->num_codecs is enough
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index c0edac80df34..90f1122d91c4 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -213,7 +213,7 @@ static umode_t soc_dev_attr_is_visible(struct kobject *kobj, if (attr == &dev_attr_pmdown_time.attr) return attr->mode; /* always visible */ - return rtd->codec ? attr->mode : 0; /* enabled only with codec */ + return rtd->num_codecs ? attr->mode : 0; /* enabled only with codec */ } static const struct attribute_group soc_dapm_dev_group = { |