{
.part_id = 0x714,
.version_id = 3,
- .ignore_pch_dmic = true,
+ .ignore_internal_dmic = true,
.dais = {
{
.direction = {false, true},
{
.part_id = 0x715,
.version_id = 3,
- .ignore_pch_dmic = true,
+ .ignore_internal_dmic = true,
.dais = {
{
.direction = {false, true},
{
.part_id = 0x714,
.version_id = 2,
- .ignore_pch_dmic = true,
+ .ignore_internal_dmic = true,
.dais = {
{
.direction = {false, true},
{
.part_id = 0x715,
.version_id = 2,
- .ignore_pch_dmic = true,
+ .ignore_internal_dmic = true,
.dais = {
{
.direction = {false, true},
if (!codec_info)
return -EINVAL;
- ctx->ignore_pch_dmic |= codec_info->ignore_pch_dmic;
+ ctx->ignore_internal_dmic |= codec_info->ignore_internal_dmic;
codec_name = asoc_sdw_get_codec_name(dev, codec_info, adr_link, i);
if (!codec_name)
/* dmic */
if (dmic_num > 0) {
- if (ctx->ignore_pch_dmic) {
+ if (ctx->ignore_internal_dmic) {
dev_warn(dev, "Ignoring PCH DMIC\n");
} else {
ret = create_dmic_dailinks(card, &dai_links, &be_id);
const char *codec_name;
int amp_num;
const u8 acpi_id[ACPI_ID_LEN];
- const bool ignore_pch_dmic;
+ const bool ignore_internal_dmic;
const struct snd_soc_ops *ops;
struct asoc_sdw_dai_info dais[SOC_SDW_MAX_DAI_NUM];
const int dai_num;
/* To store SDW Pin index for each SoundWire link */
unsigned int sdw_pin_index[SDW_MAX_LINKS];
bool append_dai_type;
- bool ignore_pch_dmic;
+ bool ignore_internal_dmic;
};
extern unsigned long sof_sdw_quirk;