summaryrefslogtreecommitdiff
path: root/drivers/usb/devio.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/devio.c')
-rw-r--r--drivers/usb/devio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/devio.c b/drivers/usb/devio.c
index 96cbc98b5cfc..ddcc24cde2aa 100644
--- a/drivers/usb/devio.c
+++ b/drivers/usb/devio.c
@@ -181,7 +181,7 @@ static struct async *alloc_async(unsigned int numisoframes)
if (!as)
return NULL;
memset(as, 0, assize);
- as->urb = usb_alloc_urb(numisoframes);
+ as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
if (!as->urb) {
kfree(as);
return NULL;