From: Timo Juhani Lindfors Date: Sun, 29 Jan 2012 14:12:13 +0000 (+0200) Subject: usb: gadget: zero: fix bug in loopback autoresume handling X-Git-Tag: v3.3-rc4~43^2~1^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=683da59d7b8ae04891636d4b59893cd4e9b0b7e5;p=platform%2Fkernel%2Flinux-exynos.git usb: gadget: zero: fix bug in loopback autoresume handling ab943a2e125b (USB: gadget: gadget zero uses new suspend/resume hooks) 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. Cc: stable Signed-off-by: Timo Juhani Lindfors Signed-off-by: Felipe Balbi --- 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 @@ -418,7 +418,7 @@ int __init loopback_add(struct usb_composite_dev *cdev, bool autoresume) /* 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)) {