提交 639e9903 编写于 作者: S Stephen Warren 提交者: Marek Vasut

usb: ci_udc: don't memalign() struct ci_req allocations

struct ci_req is a purely software structure, and needs no specific
memory alignment. Hence, allocate it with calloc() rather than
memalign(). The use of memalign() was left-over from when struct ci_req
was going to hold the aligned bounce buffer, but this is now dynamically
allocated.
Signed-off-by: NStephen Warren <swarren@nvidia.com>
上级 6ac15fda
......@@ -222,12 +222,11 @@ ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
if (num == 0 && controller.ep0_req)
return &controller.ep0_req->req;
ci_req = memalign(ARCH_DMA_MINALIGN, sizeof(*ci_req));
ci_req = calloc(1, sizeof(*ci_req));
if (!ci_req)
return NULL;
INIT_LIST_HEAD(&ci_req->queue);
ci_req->b_buf = 0;
if (num == 0)
controller.ep0_req = ci_req;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册