diff options
author | Bin Meng | 2017-07-19 21:51:09 +0800 |
---|---|---|
committer | Marek Vasut | 2017-07-28 23:34:29 +0200 |
commit | dfa96e06761e223288e59d7a3e1d574f014b5a0d (patch) | |
tree | ec6c915579a27f37ba35088f107dde21f98de735 /drivers | |
parent | 5e941943d88aebcfc2e9c8a0801061d39e218bb5 (diff) |
usb: hub: Use 'struct usb_hub_device' as hub device's uclass_priv
Use USB hub device's dev->uclass_priv to point to 'usb_hub_device'
so that with driver model usb_hub_reset() and usb_hub_allocate()
are no longer needed.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/host/usb-uclass.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/host/usb-uclass.c b/drivers/usb/host/usb-uclass.c index efc5d4e7d7b..d8d74bd04bb 100644 --- a/drivers/usb/host/usb-uclass.c +++ b/drivers/usb/host/usb-uclass.c @@ -177,7 +177,6 @@ int usb_stop(void) #ifdef CONFIG_USB_STORAGE usb_stor_reset(); #endif - usb_hub_reset(); uc_priv->companion_device_count = 0; usb_started = 0; @@ -230,7 +229,6 @@ int usb_init(void) int ret; asynch_allowed = 1; - usb_hub_reset(); ret = uclass_get(UCLASS_USB, &uc); if (ret) |