Skip to content

Commit

Permalink
zephyr: CMakeLists.txt: use new CONFIG_SOC_ for 8ULP
Browse files Browse the repository at this point in the history
Zephyr PR#70219 changes the SOC name of i.MX8ULP from MIMX8ULP
to MIMX8UD7. This means that all `CONFIG_SOC_*` configurations
will be changed from the `MIMX8ULP`-based naming to the
`MIMX8UD7`-based naming. As such, this commit updates the name
of the configuration used by the `zephyr/CMakeLists.txt` file.

Signed-off-by: Laurentiu Mihalcea <[email protected]>
  • Loading branch information
LaurentiuM1234 committed Mar 21, 2024
1 parent cdbcba3 commit ed2658a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zephyr/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ if (CONFIG_SOC_MIMX8MP_ADSP)
set(PLATFORM "imx8m")
endif()

if (CONFIG_SOC_MIMX8ULP_ADSP)
if (CONFIG_SOC_MIMX8UD7_ADSP)
zephyr_library_sources(
${SOF_DRIVERS_PATH}/generic/dummy-dma.c
${SOF_DRIVERS_PATH}/imx/edma.c
Expand Down

0 comments on commit ed2658a

Please sign in to comment.