diff options
author | Troy Kisky <troy.kisky@boundarydevices.com> | 2013-10-10 22:27:56 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-10-20 21:45:26 (GMT) |
commit | 06d513ecb61a6711157707ebe10b968aacc0f2a8 (patch) | |
tree | e1820c550bf516040b5e57ea05f0ea124b8109df /drivers/usb/host/ohci-hcd.c | |
parent | bba679144d25b91bcd7befff5a96728a30875f54 (diff) | |
download | u-boot-06d513ecb61a6711157707ebe10b968aacc0f2a8.tar.xz |
usb: add enum usb_init_type parameter to usb_lowlevel_init
This parameter will later be used to verify OTG ports.
Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
Diffstat (limited to 'drivers/usb/host/ohci-hcd.c')
-rw-r--r-- | drivers/usb/host/ohci-hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 756f2fa..4ed07da 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c @@ -1847,7 +1847,7 @@ static void hc_release_ohci(ohci_t *ohci) */ static char ohci_inited = 0; -int usb_lowlevel_init(int index, void **controller) +int usb_lowlevel_init(int index, enum usb_init_type init, void **controller) { #ifdef CONFIG_PCI_OHCI pci_dev_t pdev; |