diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/usb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/usb.h b/include/usb.h index 2bb6a063c6b..25f8543f8de 100644 --- a/include/usb.h +++ b/include/usb.h @@ -705,6 +705,11 @@ struct dm_usb_ops { * is read). This should be NULL for EHCI, which does not need this. */ int (*alloc_device)(struct udevice *bus, struct usb_device *udev); + + /** + * reset_root_port() - Reset usb root port + */ + int (*reset_root_port)(struct udevice *bus, struct usb_device *udev); }; #define usb_get_ops(dev) ((struct dm_usb_ops *)(dev)->driver->ops) |
