Skip to content

Commit

Permalink
lib: fprotect: set backend for 54l10 and 54l05
Browse files Browse the repository at this point in the history
changing SOC_NRF54L15 for more general symbol SOC_SERIES_NRF54LX
to take into account 54l10 and 54l05 soc's.

Signed-off-by: Mateusz Michalek <[email protected]>
  • Loading branch information
michalek-no authored and nordicjm committed Nov 28, 2024
1 parent 9541c22 commit e14a581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fprotect/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ elseif (CONFIG_HAS_HW_NRF_ACL)
set(FPROTECT_SRC fprotect_acl.c)
elseif (CONFIG_HAS_HW_NRF_BPROT OR CONFIG_HAS_HW_NRF_MPU)
set(FPROTECT_SRC fprotect_bprot.c)
elseif (CONFIG_SOC_NRF54L15)
elseif (CONFIG_SOC_SERIES_NRF54LX)
set(FPROTECT_SRC fprotect_rram.c)
else()
message(FATAL_ERROR "No fprotect backend selected.")
Expand Down

0 comments on commit e14a581

Please sign in to comment.