usb/xhci: unify parameter of xhci_msi_irq
According to Felipe and Alan's comments the second parameter of irq handler should be 'void *' not a specific structure pointer. So change it. Signed-off-by: Alex Shi <alex.shi@intel.com> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
This commit is contained in:
@@ -218,7 +218,7 @@ static int xhci_setup_msi(struct xhci_hcd *xhci)
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq,
|
||||
ret = request_irq(pdev->irq, xhci_msi_irq,
|
||||
0, "xhci_hcd", xhci_to_hcd(xhci));
|
||||
if (ret) {
|
||||
xhci_dbg(xhci, "disable MSI interrupt\n");
|
||||
@@ -290,7 +290,7 @@ static int xhci_setup_msix(struct xhci_hcd *xhci)
|
||||
|
||||
for (i = 0; i < xhci->msix_count; i++) {
|
||||
ret = request_irq(xhci->msix_entries[i].vector,
|
||||
(irq_handler_t)xhci_msi_irq,
|
||||
xhci_msi_irq,
|
||||
0, "xhci_hcd", xhci_to_hcd(xhci));
|
||||
if (ret)
|
||||
goto disable_msix;
|
||||
|
Reference in New Issue
Block a user