Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/i2s/i2s_nrf_tdm.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ static int tdm_nrf_configure(const struct device *dev, enum i2s_dir dir,
tdm_cfg->block_size <= NRFX_TDM_MIN_TRANSFER_SIZE_ALLOWED) {
LOG_ERR("This device can only transmit full 32-bit words greater than %u bytes.",
NRFX_TDM_MIN_TRANSFER_SIZE_ALLOWED);
return -EIO;
return -EINVAL;
}

switch (tdm_cfg->word_size) {
Expand Down
Loading