mirror of https://github.com/thesofproject/sof.git
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:
parent
26223f0213
commit
b872c170a3
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue