diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-11-17 14:47:58 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-11-17 14:48:24 -0800 |
commit | aa05cfa95f686be5d1485094402ebc7b03729e0e (patch) | |
tree | 13fa3441bafe3bd18753bb4bacd9823943ec6146 /drivers/usb/gadget/function/f_loopback.c | |
parent | 8005c49d9aea74d382f474ce11afbbc7d7130bec (diff) | |
parent | d134c48d889ddceadf4c990e6f3df16b816ed5d4 (diff) | |
download | linux-aa05cfa95f686be5d1485094402ebc7b03729e0e.tar.gz linux-aa05cfa95f686be5d1485094402ebc7b03729e0e.tar.xz |
Merge tag 'fixes-for-v4.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus
Felipe writes:
usb: fixes for v4.4-rc2
First round of fixes for this -rc cycle. We have the
usual set of miscellaneous fixes. The important
thing here is support for Intel Broxton SoC on dwc3,
some fixes for Rockchip SoCs on dwc2 and a fix on
dwc3 to let it report lower speeds than
USB_SPEED_SUPER.
Diffstat (limited to 'drivers/usb/gadget/function/f_loopback.c')
-rw-r--r-- | drivers/usb/gadget/function/f_loopback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/function/f_loopback.c b/drivers/usb/gadget/function/f_loopback.c index 23933bdf2d9d..ddc3aad886b7 100644 --- a/drivers/usb/gadget/function/f_loopback.c +++ b/drivers/usb/gadget/function/f_loopback.c @@ -329,7 +329,7 @@ static int alloc_requests(struct usb_composite_dev *cdev, for (i = 0; i < loop->qlen && result == 0; i++) { result = -ENOMEM; - in_req = usb_ep_alloc_request(loop->in_ep, GFP_KERNEL); + in_req = usb_ep_alloc_request(loop->in_ep, GFP_ATOMIC); if (!in_req) goto fail; |