From 88e9fe000728aaeb5159870385ecfd6840a9062b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 7 Feb 2016 10:27:42 +0000 Subject: [PATCH] fix wrong IRQ priority for PCI arbiter interrupt (was identical to DMA interrupt) --- sys/BaS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/BaS.c b/sys/BaS.c index 7b07469..4e6aaaa 100644 --- a/sys/BaS.c +++ b/sys/BaS.c @@ -366,7 +366,7 @@ void init_isr(void) MCF_XLB_XARB_IMR_TTME | /* TBST/TSIZ mismatch interrupt */ MCF_XLB_XARB_IMR_BAE; /* bus activity tenure timeout interrupt */ - if (!isr_register_handler(64 + INT_SOURCE_PCIARB, 5, 1, pciarb_interrupt_handler, NULL, NULL)) + if (!isr_register_handler(64 + INT_SOURCE_PCIARB, 5, 0, pciarb_interrupt_handler, NULL, NULL)) { dbg("Error: unable to register isr for PCIARB interrupts\r\n");