|
@@ -213,7 +213,7 @@ static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
|
|
|
|
|
|
if (attr == &dev_attr_pmdown_time.attr)
|
|
if (attr == &dev_attr_pmdown_time.attr)
|
|
return attr->mode; /* always visible */
|
|
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 = {
|
|
static const struct attribute_group soc_dapm_dev_group = {
|
|
@@ -1945,7 +1945,9 @@ int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
|
|
}
|
|
}
|
|
|
|
|
|
/* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
|
|
/* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
|
|
- if (cpu_dai->codec) {
|
|
|
|
|
|
+ /* the component which has non_legacy_dai_naming is Codec */
|
|
|
|
+ if (cpu_dai->codec ||
|
|
|
|
+ cpu_dai->component->driver->non_legacy_dai_naming) {
|
|
unsigned int inv_dai_fmt;
|
|
unsigned int inv_dai_fmt;
|
|
|
|
|
|
inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
|
|
inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
|