提交 69bb9973 编写于 作者: F Felipe F. Tonello 提交者: Felipe Balbi

usb: gadget: change len to size_t on alloc_ep_req()

Length of buffers should be of type size_t whenever possible. Altough
recommended, this change has no real practical change, unless a driver has a
uses a huge or negative buffer size - it might help find these bugs.
Signed-off-by: NFelipe F. Tonello <eu@felipetonello.com>
Signed-off-by: NFelipe Balbi <felipe.balbi@linux.intel.com>
上级 16b114a6
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include "u_f.h" #include "u_f.h"
struct usb_request *alloc_ep_req(struct usb_ep *ep, int len, int default_len) struct usb_request *alloc_ep_req(struct usb_ep *ep, size_t len, int default_len)
{ {
struct usb_request *req; struct usb_request *req;
......
...@@ -48,7 +48,7 @@ struct usb_ep; ...@@ -48,7 +48,7 @@ struct usb_ep;
struct usb_request; struct usb_request;
/* Requests allocated via alloc_ep_req() must be freed by free_ep_req(). */ /* Requests allocated via alloc_ep_req() must be freed by free_ep_req(). */
struct usb_request *alloc_ep_req(struct usb_ep *ep, int len, int default_len); struct usb_request *alloc_ep_req(struct usb_ep *ep, size_t len, int default_len);
static inline void free_ep_req(struct usb_ep *ep, struct usb_request *req) static inline void free_ep_req(struct usb_ep *ep, struct usb_request *req)
{ {
kfree(req->buf); kfree(req->buf);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册