Drivers: Intel: DMIC: Fix mistake in OUTCONTROL bitfield macro usage

This patch replaces the TIE bitfield get by SIP bitfield get. The
mistake impacted DAI debug trace print.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2021-08-16 19:29:35 +03:00 committed by Liam Girdwood
parent 0d9a0c112c
commit d93f3eeb46
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ int dmic_set_config_nhlt(struct dai *dai, void *spec_config)
val = *(uint32_t *)p; val = *(uint32_t *)p;
out_control[n] = val; out_control[n] = val;
bf1 = OUTCONTROL0_TIE_GET(val); bf1 = OUTCONTROL0_TIE_GET(val);
bf2 = OUTCONTROL0_TIE_GET(val); bf2 = OUTCONTROL0_SIP_GET(val);
bf3 = OUTCONTROL0_FINIT_GET(val); bf3 = OUTCONTROL0_FINIT_GET(val);
bf4 = OUTCONTROL0_FCI_GET(val); bf4 = OUTCONTROL0_FCI_GET(val);
bf5 = OUTCONTROL0_BFTH_GET(val); bf5 = OUTCONTROL0_BFTH_GET(val);