[PATCH] usb: gadget: zero: fix bug in loopback autoresume handling

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



ab943a2e125b introduced a copy-paste error where f_loopback.c writes
to a variable declared in f_sourcesink.c. This prevents one from
creating gadgets that only have a loopback function.
---
 drivers/usb/gadget/f_loopback.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/f_loopback.c b/drivers/usb/gadget/f_loopback.c
index 6d87f28..2c0cd82 100644
--- a/drivers/usb/gadget/f_loopback.c
+++ b/drivers/usb/gadget/f_loopback.c
@@ -416,11 +416,11 @@ int __init loopback_add(struct usb_composite_dev *cdev, bool autoresume)
 	loopback_intf.iInterface = id;
 	loopback_driver.iConfiguration = id;
 
 	/* support autoresume for remote wakeup testing */
 	if (autoresume)
-		sourcesink_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
+		loopback_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
 
 	/* support OTG systems */
 	if (gadget_is_otg(cdev->gadget)) {
 		loopback_driver.descriptors = otg_desc;
 		loopback_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
-- 
1.7.2.5

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux