forked from Minki/linux
usb: musb: Use shared irq
In the DA8xx, USB and CPPI 4.1 are sharing the same interrupt line. Update the driver to request a shared irq. Signed-off-by: Alexandre Bailon <abailon@baylibre.com> Signed-off-by: Bin Liu <b-liu@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f5332b0007
commit
aa2fb88625
@ -2332,7 +2332,7 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
|
||||
setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
|
||||
|
||||
/* attach to the IRQ */
|
||||
if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
|
||||
if (request_irq(nIrq, musb->isr, IRQF_SHARED, dev_name(dev), musb)) {
|
||||
dev_err(dev, "request_irq %d failed!\n", nIrq);
|
||||
status = -ENODEV;
|
||||
goto fail3;
|
||||
|
Loading…
Reference in New Issue
Block a user