From b08c8df3a1fcc1a5579e5cc0e03df1b4401b4d80 Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Tue, 14 Jan 2025 16:20:09 +0200 Subject: [PATCH] Topology: NHLT: Intel: Improve error message for DMIC enable conflict The DMIC HW does not provide all the freedom that topology syntax appears to provide for DAI configuration. This change helps to understand better what the error is about. Signed-off-by: Seppo Ingalsuo --- topology/nhlt/intel/dmic/dmic-process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/nhlt/intel/dmic/dmic-process.c b/topology/nhlt/intel/dmic/dmic-process.c index dc464374d..fe0bb8a12 100644 --- a/topology/nhlt/intel/dmic/dmic-process.c +++ b/topology/nhlt/intel/dmic/dmic-process.c @@ -776,7 +776,7 @@ static int configure_registers(struct intel_dmic_params *dmic, struct dmic_calc_ ret = stereo_helper(dmic, stereo, swap, ipmsm); if (ret < 0) { - fprintf(stderr, "%s: enable conflict\n", __func__); + fprintf(stderr, "%s: Microphones enable conflict for DMIC0 and DMIC1 FIFOs\n", __func__); return ret; }