This patch disables the use of more than one USB port. Hardware has two ports, but one may be shared with USB slave port. Until we have this information in the platform data, don't use the second port. Signed-off-by: Maxime Bizon <mbizon@xxxxxxxxxx> --- drivers/usb/host/ohci-bcm63xx.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb/host/ohci-bcm63xx.c b/drivers/usb/host/ohci-bcm63xx.c index 08807d9..74f432f 100644 --- a/drivers/usb/host/ohci-bcm63xx.c +++ b/drivers/usb/host/ohci-bcm63xx.c @@ -20,6 +20,8 @@ static int __devinit ohci_bcm63xx_start(struct usb_hcd *hcd) struct ohci_hcd *ohci = hcd_to_ohci(hcd); int ret; + ohci->num_ports = 1; + ret = ohci_init(ohci); if (ret < 0) return ret; -- 1.6.0.4