diff options
author | Lukasz Majewski | 2014-02-05 10:10:45 +0100 |
---|---|---|
committer | Marek Vasut | 2014-02-06 02:22:45 +0100 |
commit | 84c13e6f61ecf73d2d477c055a6dc96630f3e4b4 (patch) | |
tree | 85b326f8e1edb72052417f7c5bfc0127ea58c7b4 /drivers | |
parent | e0059eaef18dbdc65ee420a337aecfa555e8d493 (diff) |
usb:gadget:f_thor: Allocate request up to THOR_PACKET_SIZE not ep->maxpacket
Now it is possible to allocate static request - which receives data from
the host (OUT transaction) to the size of THOR packet.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/f_thor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/f_thor.c b/drivers/usb/gadget/f_thor.c index c4c9909155a..780729a20c2 100644 --- a/drivers/usb/gadget/f_thor.c +++ b/drivers/usb/gadget/f_thor.c @@ -614,7 +614,7 @@ static struct usb_request *thor_start_ep(struct usb_ep *ep) { struct usb_request *req; - req = alloc_ep_req(ep, ep->maxpacket); + req = alloc_ep_req(ep, THOR_PACKET_SIZE); debug("%s: ep:%p req:%p\n", __func__, ep, req); if (!req) |