Skip to content

Commit de695ea

Browse files
57300rlubos
authored andcommitted
[nrf fromtree] soc: nordic: Extend address validation for Haltium platform
VPR addresses are platform-dependent, so let's use a common symbol - CONFIG_NRF_PLATFORM_HALTIUM - to cover both nRF54H and nRF92 series. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit 26c99a6)
1 parent 570c90e commit de695ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soc/nordic/validate_base_addresses.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ CHECK_DT_REG(vmc, NRF_VMC);
335335
CHECK_DT_REG(cpuflpr_clic, NRF_FLPR_VPRCLIC);
336336
#if defined(CONFIG_SOC_NRF54L15)
337337
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR00);
338-
#elif defined(CONFIG_SOC_NRF54H20)
338+
#elif defined(CONFIG_NRF_PLATFORM_HALTIUM)
339339
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR121);
340340
CHECK_DT_REG(cpuppr_vpr, NRF_VPR130);
341341
#endif

0 commit comments

Comments
 (0)