1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

usb: Drop device-model specific copy of usb_legacy_port_reset

The device-model usb_legacy_port_reset function calls the device-model
usb_port_reset function which is a 1 on 1 copy of the non dm
usb_legacy_port_reset and this is the only use of usb_port_reset in all
of u-boot.

Drop both, and alway use the usb_legacy_port_reset() version in
common/usb.c .

Also while at it make it static as it is only used in common/usb.c .

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Hans de Goede
2015-06-17 21:33:45 +02:00
committed by Simon Glass
parent 04c5ee41b2
commit 6bfe80e754
3 changed files with 1 additions and 40 deletions

View File

@@ -729,14 +729,6 @@ int usb_reset_root_port(void);
*/
struct usb_device *usb_get_dev_index(struct udevice *bus, int index);
/**
* usb_legacy_port_reset() - Legacy function to reset a hub port
*
* @hub: Hub device
* @portnr: Port number (1=first)
*/
int usb_legacy_port_reset(struct usb_device *hub, int portnr);
/**
* usb_setup_device() - set up a device ready for use
*