From: Kuninori Morimoto Date: Tue, 5 Dec 2017 04:20:42 +0000 (+0000) Subject: ASoC: don't use rtd->codec on soc_dev_attr_is_visible() X-Git-Tag: for-linus-20180204~18^2~1^2~24^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3b6eed8deb37c349bffc7b3b4d722ce4023f8b11;p=linux-block.git 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 Signed-off-by: Mark Brown --- 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 = {