diff options
author | Stephen Warren <swarren@nvidia.com> | 2014-05-19 14:21:18 -0600 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-06-01 19:20:07 +0200 |
commit | 77b83e6d099cb2149e5b2c33a700003227d99297 (patch) | |
tree | 70b71935bbd5913695262cd06bd8ca6789d3f79d /include/configs | |
parent | 0d437bcaf9be36d7bb954cb261635678c790dff7 (diff) |
usb: hub: remove CONFIG_USB_HUB_MIN_POWER_ON_DELAY
Now that we wait the correct specification-mandated time at the end of
usb_hub_power_on(), I suspect that CONFIG_USB_HUB_MIN_POWER_ON_DELAY has
no purpose.
For cm_t35.h, we already wait longer than the original MIN_POWER_ON_DELAY,
so this change is safe.
For gw_ventana.h, we will wait as long as the original MIN_POWER_ON_DELAY
iff pgood_delay was at least 200ms. I'm not sure if this is the case or
not, hence I've CC'd relevant people to test this change.
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/cm_t35.h | 2 | ||||
-rw-r--r-- | include/configs/gw_ventana.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/configs/cm_t35.h b/include/configs/cm_t35.h index aae05e0333..f6acf69205 100644 --- a/include/configs/cm_t35.h +++ b/include/configs/cm_t35.h @@ -104,8 +104,6 @@ #define CONFIG_USB_DEVICE #define CONFIG_USB_TTY #define CONFIG_SYS_CONSOLE_IS_IN_ENV -/* This delay is really for slow-to-power-on USB sticks, not the hub */ -#define CONFIG_USB_HUB_MIN_POWER_ON_DELAY 500 /* commands to include */ #include <config_cmd_default.h> diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h index cd554957dd..f41c96ea7f 100644 --- a/include/configs/gw_ventana.h +++ b/include/configs/gw_ventana.h @@ -192,7 +192,6 @@ #define CONFIG_USB_ETH_CDC #define CONFIG_NETCONSOLE #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP -#define CONFIG_USB_HUB_MIN_POWER_ON_DELAY 1200 /* Framebuffer and LCD */ #define CONFIG_VIDEO |