Commit fc849b85 authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

USB: remove OTG build warning

Somewhere along the line, a variable in a USB-OTG codepath
stopped being used; this removes the relevant compiler warning.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 26f953fd
...@@ -1254,8 +1254,7 @@ int usb_new_device(struct usb_device *udev) ...@@ -1254,8 +1254,7 @@ int usb_new_device(struct usb_device *udev)
USB_DT_OTG, (void **) &desc) == 0) { USB_DT_OTG, (void **) &desc) == 0) {
if (desc->bmAttributes & USB_OTG_HNP) { if (desc->bmAttributes & USB_OTG_HNP) {
unsigned port1 = udev->portnum; unsigned port1 = udev->portnum;
struct usb_device *root = udev->parent;
dev_info(&udev->dev, dev_info(&udev->dev,
"Dual-Role OTG device on %sHNP port\n", "Dual-Role OTG device on %sHNP port\n",
(port1 == bus->otg_port) (port1 == bus->otg_port)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment