Skip to content

Commit

Permalink
Drivers: DAI: Intel: Remove trace from dai_dmic_update_bits()
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
singalsu authored and aescolar committed Jun 20, 2024
1 parent 29b1e2a commit 9db5803
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/dai/intel/dmic/dmic.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,6 @@ static void dai_dmic_update_bits(const struct dai_intel_dmic *dmic,
{
uint32_t dest = dmic->reg_base + reg;

LOG_INF("%s base %x, reg %x, mask %x, value %x", __func__,
dmic->reg_base, reg, mask, val);

sys_write32((sys_read32(dest) & (~mask)) | (val & mask), dest);
}

Expand Down

0 comments on commit 9db5803

Please sign in to comment.