Skip to content

Commit e8a71d9

Browse files
decsnydleach02
authored andcommitted
soc: renesas: Fix linker error from multiple IRQ17
Fix linker error caused by the smartbond timer driver being enabled at the same time as the smartbond timer counter driver. For some reason putting SMARTBOND_TIMER=n in a conf file does not fix this, this change has to be made to the Kconfig.defconfig to not add this default y case in order to fix the error. At least that is all I could figure out, and not sure why the .conf doesn't override it. Signed-off-by: Declan Snyder <[email protected]>
1 parent e4cf90f commit e8a71d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soc/renesas/smartbond/da1469x/Kconfig.defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
if SOC_SERIES_DA1469X
55

66
config SMARTBOND_TIMER
7-
default y if PM
7+
default y if PM && !$(dt_nodelabel_enabled,timer2)
88

99
config CORTEX_M_SYSTICK
1010
default n if SMARTBOND_TIMER

0 commit comments

Comments
 (0)