Commit ecf5899f authored by Russell King's avatar Russell King

[ARM] Fix SA1111 OHCI IRQ handler return type.

parent 0bc6fe2f
...@@ -105,7 +105,7 @@ static void dump_hci_status(struct usb_hcd *hcd, const char *label) ...@@ -105,7 +105,7 @@ static void dump_hci_status(struct usb_hcd *hcd, const char *label)
} }
#endif #endif
static void usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r) static irqreturn_t usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r)
{ {
struct usb_hcd *hcd = __hcd; struct usb_hcd *hcd = __hcd;
// unsigned long status = sa1111_readl(hcd->regs + SA1111_USB_STATUS); // unsigned long status = sa1111_readl(hcd->regs + SA1111_USB_STATUS);
...@@ -120,7 +120,7 @@ static void usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r) ...@@ -120,7 +120,7 @@ static void usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r)
} }
#endif #endif
usb_hcd_irq(irq, hcd, r); return usb_hcd_irq(irq, hcd, r);
} }
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment