aboutsummaryrefslogtreecommitdiffstats
path: root/include/usb.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2017-07-19 21:51:10 +0800
committerMarek Vasut <marex@denx.de>2017-07-28 23:34:30 +0200
commita199a7244899f6385035459cbc62409bd9bbcc23 (patch)
treea0082a5a25016dc034d7eaaefa9521c3e70a3564 /include/usb.h
parentdfa96e06761e223288e59d7a3e1d574f014b5a0d (diff)
downloadu-boot-midas-a199a7244899f6385035459cbc62409bd9bbcc23.tar.gz
u-boot-midas-a199a7244899f6385035459cbc62409bd9bbcc23.tar.bz2
u-boot-midas-a199a7244899f6385035459cbc62409bd9bbcc23.zip
usb: hub: Remove hub_port_reset()
At present hub_port_reset() is defined in DM USB, but it is never called hence remove it (removing another ifdefs). While we are here, change legacy_hub_port_reset() name to usb_hub_port_reset() to better match other function names in the same hub module. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/usb.h')
-rw-r--r--include/usb.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/usb.h b/include/usb.h
index eb82cc23a8..a266677677 100644
--- a/include/usb.h
+++ b/include/usb.h
@@ -871,24 +871,6 @@ bool usb_device_has_child_on_port(struct usb_device *parent, int port);
int usb_hub_probe(struct usb_device *dev, int ifnum);
void usb_hub_reset(void);
-/**
- * legacy_hub_port_reset() - reset a port given its usb_device pointer
- *
- * Reset a hub port and see if a device is present on that port, providing
- * sufficient time for it to show itself. The port status is returned.
- *
- * With driver model this moves to hub_port_reset() and is passed a struct
- * udevice.
- *
- * @dev: USB device to reset
- * @port: Port number to reset (note ports are numbered from 0 here)
- * @portstat: Returns port status
- */
-int legacy_hub_port_reset(struct usb_device *dev, int port,
- unsigned short *portstat);
-
-int hub_port_reset(struct udevice *dev, int port, unsigned short *portstat);
-
/*
* usb_find_usb2_hub_address_port() - Get hub address and port for TT setting
*