From fd67c11b6d3d84308db14150997ae773283caec2 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. Closes: https://github.com/alsa-project/alsa-utils/pull/286 Signed-off-by: Seppo Ingalsuo Signed-off-by: Jaroslav Kysela --- 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 2d02289..2db5da4 100644 --- a/topology/nhlt/intel/dmic/dmic-process.c +++ b/topology/nhlt/intel/dmic/dmic-process.c @@ -773,7 +773,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; } -- 2.47.1