Skip to content

Commit affe009

Browse files
committed
ASoC: sof-function-topology-lib: escalate the log when missing function
topoplogy Function topology must be used if the ACPI match table is created based on the reported ACPI table because the monolithic topology is not picked for the audio configuration. Escalate the log and ask the user to download the latest topologies. Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
1 parent 5f38e11 commit affe009

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sound/soc/intel/common/sof-function-topology-lib.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,11 @@ int sof_sdw_get_tplg_files(struct snd_soc_card *card, const struct snd_soc_acpi_
126126
if (!ret) {
127127
release_firmware(fw);
128128
} else {
129-
dev_dbg(card->dev, "Failed to open topology file: %s\n", (*tplg_files)[i]);
129+
dev_warn(card->dev,
130+
"Failed to open topology file: %s, you might need to\n",
131+
(*tplg_files)[i]);
132+
dev_warn(card->dev,
133+
"download it from https://github.com/thesofproject/sof-bin/\n");
130134
return 0;
131135
}
132136
}

0 commit comments

Comments
 (0)