Commit 6331d77e authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'asoc/fix/intel' into asoc-linus

parents 1291a0d5 4362934a
...@@ -101,7 +101,7 @@ static const struct snd_soc_dapm_route kabylake_map[] = { ...@@ -101,7 +101,7 @@ static const struct snd_soc_dapm_route kabylake_map[] = {
{ "ssp0 Tx", NULL, "spk_out" }, { "ssp0 Tx", NULL, "spk_out" },
{ "AIF Playback", NULL, "ssp1 Tx" }, { "AIF Playback", NULL, "ssp1 Tx" },
{ "ssp1 Tx", NULL, "hs_out" }, { "ssp1 Tx", NULL, "codec1_out" },
{ "hs_in", NULL, "ssp1 Rx" }, { "hs_in", NULL, "ssp1 Rx" },
{ "ssp1 Rx", NULL, "AIF Capture" }, { "ssp1 Rx", NULL, "AIF Capture" },
......
...@@ -109,7 +109,7 @@ static const struct snd_soc_dapm_route kabylake_map[] = { ...@@ -109,7 +109,7 @@ static const struct snd_soc_dapm_route kabylake_map[] = {
{ "ssp0 Tx", NULL, "spk_out" }, { "ssp0 Tx", NULL, "spk_out" },
{ "AIF Playback", NULL, "ssp1 Tx" }, { "AIF Playback", NULL, "ssp1 Tx" },
{ "ssp1 Tx", NULL, "hs_out" }, { "ssp1 Tx", NULL, "codec1_out" },
{ "hs_in", NULL, "ssp1 Rx" }, { "hs_in", NULL, "ssp1 Rx" },
{ "ssp1 Rx", NULL, "AIF Capture" }, { "ssp1 Rx", NULL, "AIF Capture" },
......
...@@ -119,11 +119,16 @@ static bool skl_check_ep_match(struct device *dev, struct nhlt_endpoint *epnt, ...@@ -119,11 +119,16 @@ static bool skl_check_ep_match(struct device *dev, struct nhlt_endpoint *epnt,
if ((epnt->virtual_bus_id == instance_id) && if ((epnt->virtual_bus_id == instance_id) &&
(epnt->linktype == link_type) && (epnt->linktype == link_type) &&
(epnt->direction == dirn) && (epnt->direction == dirn)) {
(epnt->device_type == dev_type)) /* do not check dev_type for DMIC link type */
return true; if (epnt->linktype == NHLT_LINK_DMIC)
else return true;
return false;
if (epnt->device_type == dev_type)
return true;
}
return false;
} }
struct nhlt_specific_cfg struct nhlt_specific_cfg
......
...@@ -2908,7 +2908,7 @@ static int skl_tplg_control_load(struct snd_soc_component *cmpnt, ...@@ -2908,7 +2908,7 @@ static int skl_tplg_control_load(struct snd_soc_component *cmpnt,
break; break;
default: default:
dev_warn(bus->dev, "Control load not supported %d:%d:%d\n", dev_dbg(bus->dev, "Control load not supported %d:%d:%d\n",
hdr->ops.get, hdr->ops.put, hdr->ops.info); hdr->ops.get, hdr->ops.put, hdr->ops.info);
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment