Skip to content

Commit c5e0cbe

Browse files
murzinvMarc Zyngier
authored andcommitted
irqchip: nvic: Fix offset for Interrupt Priority Offsets
According to ARM(v7M) ARM Interrupt Priority Offsets located at 0xE000E400-0xE000E5EC, while 0xE000E300-0xE000E33C covers read-only Interrupt Active Bit Registers Fixes: 292ec08 ("irqchip: Add support for ARMv7-M NVIC") Signed-off-by: Vladimir Murzin <[email protected]> Signed-off-by: Marc Zyngier <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 357a9c4 commit c5e0cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/irqchip/irq-nvic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define NVIC_ISER 0x000
2828
#define NVIC_ICER 0x080
29-
#define NVIC_IPR 0x300
29+
#define NVIC_IPR 0x400
3030

3131
#define NVIC_MAX_BANKS 16
3232
/*

0 commit comments

Comments
 (0)