From 096920264eeddc3751d865ca78ebd042747b795c Mon Sep 17 00:00:00 2001 From: Jaska Uimonen Date: Tue, 30 May 2023 17:09:13 +0300 Subject: [PATCH] topology: plugins: nhlt: remove dmic error print Remove "fs not set" print from dmic processing. The message is printed out when pdm is enabled but not configured. Many sof topologies enable all pdms even if not used as it is a requirement for some Intel firmware versions to work correctly. Fixes: https://github.com/alsa-project/alsa-utils/pull/218 Signed-off-by: Jaska Uimonen Signed-off-by: Jaroslav Kysela --- topology/nhlt/intel/dmic/dmic-process.c | 1 - 1 file changed, 1 deletion(-) diff --git a/topology/nhlt/intel/dmic/dmic-process.c b/topology/nhlt/intel/dmic/dmic-process.c index 0292f9d..275ae74 100644 --- a/topology/nhlt/intel/dmic/dmic-process.c +++ b/topology/nhlt/intel/dmic/dmic-process.c @@ -146,7 +146,6 @@ static void find_modes(struct intel_dmic_params *dmic, struct dmic_calc_decim_mo * num_of_modes as zero. */ if (fs == 0) { - fprintf(stderr, "find_modes(): fs not set\n"); return; } -- 2.47.1