Merge "usb: gadget: f_hid: use alloc_ep_req()"
This commit is contained in:
commit
1f45a4ba6c
1 changed files with 1 additions and 5 deletions
|
@ -633,14 +633,10 @@ static int hidg_bind(struct usb_configuration *c, struct usb_function *f)
|
|||
|
||||
/* preallocate request and buffer */
|
||||
status = -ENOMEM;
|
||||
hidg->req = usb_ep_alloc_request(hidg->in_ep, GFP_KERNEL);
|
||||
hidg->req = alloc_ep_req(hidg->in_ep, hidg->report_length);
|
||||
if (!hidg->req)
|
||||
goto fail;
|
||||
|
||||
hidg->req->buf = kmalloc(hidg->report_length, GFP_KERNEL);
|
||||
if (!hidg->req->buf)
|
||||
goto fail;
|
||||
|
||||
/* set descriptor dynamic values */
|
||||
hidg_interface_desc.bInterfaceSubClass = hidg->bInterfaceSubClass;
|
||||
hidg_interface_desc.bInterfaceProtocol = hidg->bInterfaceProtocol;
|
||||
|
|
Loading…
Add table
Reference in a new issue