summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2015-06-17 21:33:46 +0200
committerSimon Glass <sjg@chromium.org>2015-07-21 17:39:35 -0600
commit9eb72dd1f4a7d4b6996a2b2ebf8d9a72ef78a998 (patch)
tree67d10c39c8d30895ae4c1a75089b277f7a3364e6 /include
parent6bfe80e754d7e2841316429f091ed3b68f6cf5a2 (diff)
downloadtalos-obmc-uboot-9eb72dd1f4a7d4b6996a2b2ebf8d9a72ef78a998.tar.gz
talos-obmc-uboot-9eb72dd1f4a7d4b6996a2b2ebf8d9a72ef78a998.zip
usb: usb_setup_device: Drop unneeded portnr function argument
Drop the unneeded portnr function argument, the portnr is part of the usb_device struct which is passed via the dev argument. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/usb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/usb.h b/include/usb.h
index 6b5d5361a9..8a71e28253 100644
--- a/include/usb.h
+++ b/include/usb.h
@@ -734,14 +734,14 @@ struct usb_device *usb_get_dev_index(struct udevice *bus, int index);
*
* @dev: USB device pointer. This need not be a real device - it is
* common for it to just be a local variable with its ->dev
- * member (i.e. @dev->dev) set to the parent device
+ * member (i.e. @dev->dev) set to the parent device and
+ * dev->portnr set to the port number on the hub (1=first)
* @do_read: true to read the device descriptor before an address is set
* (should be false for XHCI buses, true otherwise)
* @parent: Parent device (either UCLASS_USB or UCLASS_USB_HUB)
- * @portnr: Port number on hub (1=first) or 0 for none
* @return 0 if OK, -ve on error */
int usb_setup_device(struct usb_device *dev, bool do_read,
- struct usb_device *parent, int portnr);
+ struct usb_device *parent);
/**
* usb_hub_scan() - Scan a hub and find its devices
OpenPOWER on IntegriCloud