Skip to content

Commit 26c99a6

Browse files
57300nashif
authored andcommitted
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]>
1 parent 3b56ef0 commit 26c99a6

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
@@ -338,7 +338,7 @@ CHECK_DT_REG(cpuflpr_clic, NRF_FLPR_VPRCLIC);
338338
CHECK_DT_REG(cpuppr_clic, NRF_PPR_VPRCLIC);
339339
#if defined(CONFIG_SOC_NRF54L15)
340340
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR00);
341-
#elif defined(CONFIG_SOC_NRF54H20)
341+
#elif defined(CONFIG_NRF_PLATFORM_HALTIUM)
342342
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR121);
343343
CHECK_DT_REG(cpuppr_vpr, NRF_VPR130);
344344
#endif

0 commit comments

Comments
 (0)