Skip to content

Commit 9db5803

Browse files
singalsuaescolar
authored andcommitted
Drivers: DAI: Intel: Remove trace from dai_dmic_update_bits()
The dai_dmic_update_bits() function is used in start trigger code dai_dmic_start() and in capture runtime to control DMIC IP in unmute sequence. Especially the start sequence is timing critical so it's better not produce additional delay in this function. Signed-off-by: Seppo Ingalsuo <[email protected]>
1 parent 29b1e2a commit 9db5803

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

drivers/dai/intel/dmic/dmic.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@ static void dai_dmic_update_bits(const struct dai_intel_dmic *dmic,
117117
{
118118
uint32_t dest = dmic->reg_base + reg;
119119

120-
LOG_INF("%s base %x, reg %x, mask %x, value %x", __func__,
121-
dmic->reg_base, reg, mask, val);
122-
123120
sys_write32((sys_read32(dest) & (~mask)) | (val & mask), dest);
124121
}
125122

0 commit comments

Comments
 (0)