mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-26 08:32:38 +00:00
realtek: use higher priority for timer interrupts
The assigned output index for the event timers was quite low, lower even
than the ethernet interrupt. This means that high network load could
preempt timer interrupts, possibly leading to all sorts of strange
behaviour.
Increase the interrupt output index of the event timers to 5, which is
the highest priority output and corresponds to the (otherwise unused)
MIPS CPU timer interrupt.
Fixes: a75b9e3ecb
("realtek: Adding RTL930X sub-target")
Signed-off-by: Sander Vanheule <sander@svanheule.net>
This commit is contained in:
parent
4b31717fb0
commit
a39fbaf23a
@ -64,7 +64,7 @@
|
||||
#interrupt-cells = <1>;
|
||||
|
||||
interrupt-parent = <&intc>;
|
||||
interrupts = <7 1>, <8 2>;
|
||||
interrupts = <7 5>, <8 5>;
|
||||
};
|
||||
|
||||
spi0: spi@1200 {
|
||||
|
Loading…
Reference in New Issue
Block a user