aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/hub.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2007-08-03 00:44:27 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 17:55:08 -0400
commitb5ea060f1e19c6a3f409d3472c723da4517547b8 (patch)
tree76e9647f3e36d0d6e28e9dec19d372119fa373f4 /drivers/usb/core/hub.c
parent732bb9ee8195053a7dc00b9eec7be48891ad8668 (diff)
USB: rename choose_configuration
As it is global, give it a usb specific name in the global namespace. Cc: Inaky Perez-Gonzalez <inaky@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/core/hub.c')
-rw-r--r--drivers/usb/core/hub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index f725d9e62b5b..4c495c4d5053 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -1460,7 +1460,7 @@ int usb_authorize_device(struct usb_device *usb_dev)
1460 /* Choose and set the configuration. This registers the interfaces 1460 /* Choose and set the configuration. This registers the interfaces
1461 * with the driver core and lets interface drivers bind to them. 1461 * with the driver core and lets interface drivers bind to them.
1462 */ 1462 */
1463 c = choose_configuration(usb_dev); 1463 c = usb_choose_configuration(usb_dev);
1464 if (c >= 0) { 1464 if (c >= 0) {
1465 result = usb_set_configuration(usb_dev, c); 1465 result = usb_set_configuration(usb_dev, c);
1466 if (result) { 1466 if (result) {