fix wrong IRQ priority for PCI arbiter interrupt (was identical to DMA

interrupt)
This commit is contained in:
Markus Fröschle
2016-02-07 10:27:42 +00:00
parent 7d59124531
commit 88e9fe0007

View File

@@ -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");