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 tag 'counter-fixes-for-6.18' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wbg/counter into char-misc-next

William writes:

Counter fixes for 6.18

A fix to permit multiple counter channels to share the same TCB IRQ line
for microchip-tcb-cpature.

* tag 'counter-fixes-for-6.18' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wbg/counter:
counter: microchip-tcb-capture: Allow shared IRQ for multi-channel TCBs

+1 -1
+1 -1
drivers/counter/microchip-tcb-capture.c
··· 451 451 static int mchp_tc_irq_enable(struct counter_device *const counter, int irq) 452 452 { 453 453 struct mchp_tc_data *const priv = counter_priv(counter); 454 - int ret = devm_request_irq(counter->parent, irq, mchp_tc_isr, 0, 454 + int ret = devm_request_irq(counter->parent, irq, mchp_tc_isr, IRQF_SHARED, 455 455 dev_name(counter->parent), counter); 456 456 457 457 if (ret < 0)