usb: ohci: Remove unnecessary delays from hc_start and power power-on paths
authorHans de Goede <hdegoede@redhat.com>
Sun, 10 May 2015 12:10:23 +0000 (14:10 +0200)
committerSimon Glass <sjg@chromium.org>
Fri, 15 May 2015 00:49:32 +0000 (18:49 -0600)
commit969bb5bad3163204bb07dab385397e8ceab70a53
tree12b84d4196725e3cde57c67331c2be965ac3799e
parent47976d2c16c1921f6115936fea93a61e1881787d
usb: ohci: Remove unnecessary delays from hc_start and power power-on paths

The usb spec says that we must wait a minimum amount of time after port
power on (exact time is in the hub descriptor), this is something which
we must not only do for root ports but also for external hub ports, which
is why the common usb_hub code already waits a full second after powering
up ports. Having a separate wait for just the root hub in the ohci-hcd
code only leads to doing the waiting twice for the root ports, so drop the
wait from the ohci-hcd code.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/usb/host/ohci-hcd.c