Skip to content

Commit

Permalink
intel_adsp: ace20_lnl: Fix i2svss DT field initialization
Browse files Browse the repository at this point in the history
This patch fixes i2svss field initialisation in Device Tree for LNL
platform. It fixes this bug: zephyrproject-rtos#482

Problem is observed only when using SSP_BLOB_VER_1_5 version.
Unfortunatelly this version is not tested in FW validation tests.

Signed-off-by: Jaroslaw Stelter <[email protected]>
  • Loading branch information
jxstelter authored and nashif committed Apr 18, 2023
1 parent b75b415 commit 1659aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/dai/intel/ssp/ssp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2263,8 +2263,8 @@ static const char irq_name_level5_z[] = "level5";
.shim_base = DT_REG_ADDR_BY_IDX(DT_NODELABEL(shim), 0), \
IF_ENABLED(DT_NODE_EXISTS(DT_NODELABEL(hdamlssp)), \
(.hdamlssp_base = DT_REG_ADDR(DT_NODELABEL(hdamlssp)),))\
IF_ENABLED(DT_NODE_EXISTS(DT_NODELABEL(i2svss)), \
(.i2svss_base = DT_REG_ADDR(DT_NODELABEL(i2svss)),))\
IF_ENABLED(DT_INST_PROP_HAS_IDX(n, i2svss, 0), \
(.i2svss_base = DT_INST_PROP_BY_IDX(n, i2svss, 0),))\
.irq = n, \
.irq_name = irq_name_level5_z, \
.fifo[DAI_DIR_PLAYBACK].offset = \
Expand Down

0 comments on commit 1659aa2

Please sign in to comment.