Skip to content

Commit 19c1b61

Browse files
committed
Just for CI test - will upstream if CI is green
Signed-off-by: Georgios Vasilakis <[email protected]>
1 parent 8475b5d commit 19c1b61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/arch/arm/arm_irq_vector_table/src/arm_irq_vector_table.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
*/
2626
#define _ISR_OFFSET (TIMER0_IRQn + 1)
2727
#elif defined(CONFIG_SOC_SERIES_NRF54LX)
28-
/* For nRF54L Series, use SWI00-02 interrupt lines. */
28+
/* For nRF54L Series use SWI00-02 interrupt lines. */
2929
#define _ISR_OFFSET SWI00_IRQn
30+
/* For nRF54H and nRF92 Series use SWI05-08 interrupt lines. */
3031
#elif defined(CONFIG_SOC_SERIES_NRF54HX) || defined(CONFIG_SOC_SERIES_NRF92X)
31-
/* For nRF54H and nRF92 Series, use BELLBOARD_0-2 interrupt lines. */
32-
#define _ISR_OFFSET BELLBOARD_0_IRQn
32+
#define _ISR_OFFSET SWI5_IRQn
3333
#else
3434
/* For other nRF targets, use TIMER0-2 interrupt lines. */
3535
#define _ISR_OFFSET TIMER0_IRQn

0 commit comments

Comments
 (0)