Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fixes from Thomas Gleixner:
"Two small fixlets:

- select a required Kconfig to make the MVEBU driver compile

- add the missing MIPS local GIC interrupts which prevent drivers to
probe successfully"

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/mips-gic: Fix Local compare interrupt
irqchip/mvebu-odmi: Select GENERIC_MSI_IRQ_DOMAIN

+5
+1
drivers/irqchip/Kconfig
··· 262 262 263 263 config MVEBU_ODMI 264 264 bool 265 + select GENERIC_MSI_IRQ_DOMAIN 265 266 266 267 config MVEBU_PIC 267 268 bool
+4
drivers/irqchip/irq-mips-gic.c
··· 991 991 992 992 static void __init gic_map_interrupts(struct device_node *node) 993 993 { 994 + gic_map_single_int(node, GIC_LOCAL_INT_WD); 995 + gic_map_single_int(node, GIC_LOCAL_INT_COMPARE); 994 996 gic_map_single_int(node, GIC_LOCAL_INT_TIMER); 995 997 gic_map_single_int(node, GIC_LOCAL_INT_PERFCTR); 998 + gic_map_single_int(node, GIC_LOCAL_INT_SWINT0); 999 + gic_map_single_int(node, GIC_LOCAL_INT_SWINT1); 996 1000 gic_map_single_int(node, GIC_LOCAL_INT_FDC); 997 1001 } 998 1002