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 irqchip fix from Thomas Gleixner:
"A single fix for an off by one bug in the sunxi irqchip driver"

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip: sunxi-nmi: Fix off-by-one error in irq iterator

+1 -1
+1 -1
drivers/irqchip/irq-sunxi-nmi.c
··· 104 104 irqd_set_trigger_type(data, flow_type); 105 105 irq_setup_alt_chip(data, flow_type); 106 106 107 - for (i = 0; i <= gc->num_ct; i++, ct++) 107 + for (i = 0; i < gc->num_ct; i++, ct++) 108 108 if (ct->type & flow_type) 109 109 ctrl_off = ct->regs.type; 110 110