Topology: Fix re-define of DMICPROC in sof-hda-generic.m4

The mistake in the topology macro causes overwrite DMICPROC with
volume if HSPROC is not defined. This patch fixes the macro line
to handle properly HSPROC.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2021-03-02 18:57:58 +02:00 committed by Liam Girdwood
parent 26223f0213
commit b872c170a3
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# if XPROC is not defined, define with default pipe
ifdef(`DMICPROC', , `define(DMICPROC, eq-iir-volume)')
ifdef(`DMIC16KPROC', , `define(DMIC16KPROC, eq-iir-volume)')
ifdef(`HSPROC', , `define(DMICPROC, volume)')
ifdef(`HSPROC', , `define(HSPROC, volume)')
# Include topology builder
include(`utils.m4')