Skip to content

Commit 09c455c

Browse files
committed
fixup! ASoC: SOF: Don't print the monolithic topology name if function topology may be used
Fix checkpatch error Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
1 parent fd725eb commit 09c455c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

sound/soc/sof/fw-file-profile.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,11 @@ static void sof_print_profile_info(struct snd_sof_dev *sdev,
288288
if (profile->fw_lib_path)
289289
dev_info(dev, " Firmware lib path: %s\n", profile->fw_lib_path);
290290

291-
if(plat_data->machine->get_function_tplg_files && !plat_data->disable_function_topology)
291+
if (plat_data->machine->get_function_tplg_files && !plat_data->disable_function_topology)
292292
dev_info(dev, " Topology file: function topologies\n");
293293
else
294-
dev_info(dev, " Topology file: %s/%s\n", profile->tplg_path, profile->tplg_name);
294+
dev_info(dev, " Topology file: %s/%s\n",
295+
profile->tplg_path, profile->tplg_name);
295296
}
296297

297298
int sof_create_ipc_file_profile(struct snd_sof_dev *sdev,

0 commit comments

Comments
 (0)