summaryrefslogtreecommitdiff
path: root/drivers/usb/host/xhci-plat.c
diff options
context:
space:
mode:
authorFelipe Balbi <felipe.balbi@linux.intel.com>2016-04-22 13:17:15 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-26 16:08:02 -0700
commit72d4b2847d3d31fcc3910e18b72d026987626c8d (patch)
tree2cf5ce1d7eed2f55ed1c040edc58a8286487e653 /drivers/usb/host/xhci-plat.c
parent3bdb263d6b3c2384d98745897ba9db676806ed04 (diff)
usb: host: xhci: plat: change type of mvebu init_quirk()
Just like RCAR's init_quirk() we want mvebu's to use struct usb_hcd * as argument too. This is another step towards removing xhci_plat_type_is(). Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/xhci-plat.c')
-rw-r--r--drivers/usb/host/xhci-plat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index 4fcb3418e7a7..9bdf016d9080 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -73,10 +73,7 @@ static int xhci_plat_setup(struct usb_hcd *hcd)
}
if (xhci_plat_type_is(hcd, XHCI_PLAT_TYPE_MARVELL_ARMADA)) {
- struct platform_device *pdev;
-
- pdev = to_platform_device(hcd->self.controller);
- ret = xhci_mvebu_mbus_init_quirk(pdev);
+ ret = xhci_mvebu_mbus_init_quirk(hcd);
if (ret)
return ret;
}