blob: 6aea1ecb399998e872df00d4e561222779231cbb [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +01002/*
3 * u_f.c -- USB function utilities for Gadget stack
4 *
5 * Copyright (c) 2013 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com
7 *
Andrzej Pietrasiewicz1b4a3b52018-12-13 14:24:57 +01008 * Author: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +01009 */
10
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +010011#include "u_f.h"
Felipe F. Tonelloe0466152016-08-08 21:30:06 +010012#include <linux/usb/ch9.h>
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +010013
Felipe F. Tonelloaadbe812016-08-23 18:24:49 +010014struct usb_request *alloc_ep_req(struct usb_ep *ep, size_t len)
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +010015{
16 struct usb_request *req;
17
18 req = usb_ep_alloc_request(ep, GFP_ATOMIC);
19 if (req) {
Felipe F. Tonelloaadbe812016-08-23 18:24:49 +010020 req->length = usb_endpoint_dir_out(ep->desc) ?
21 usb_ep_align(ep, len) : len;
Andrzej Pietrasiewicz1efd54e2013-11-07 08:41:26 +010022 req->buf = kmalloc(req->length, GFP_ATOMIC);
23 if (!req->buf) {
24 usb_ep_free_request(ep, req);
25 req = NULL;
26 }
27 }
28 return req;
29}
Felipe Balbi0700faa2014-04-01 13:19:32 -050030EXPORT_SYMBOL_GPL(alloc_ep_req);