提交 22184917 编写于 作者: W Wolfram Sang 提交者: Felipe Balbi

usb: renesas_usbhs: mod_host: don't print on ENOMEM

All kmalloc-based functions print enough information on failures.
Signed-off-by: NWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: NFelipe Balbi <felipe.balbi@linux.intel.com>
上级 cb73db7d
...@@ -166,14 +166,10 @@ static struct usbhsh_request *usbhsh_ureq_alloc(struct usbhsh_hpriv *hpriv, ...@@ -166,14 +166,10 @@ static struct usbhsh_request *usbhsh_ureq_alloc(struct usbhsh_hpriv *hpriv,
gfp_t mem_flags) gfp_t mem_flags)
{ {
struct usbhsh_request *ureq; struct usbhsh_request *ureq;
struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
struct device *dev = usbhs_priv_to_dev(priv);
ureq = kzalloc(sizeof(struct usbhsh_request), mem_flags); ureq = kzalloc(sizeof(struct usbhsh_request), mem_flags);
if (!ureq) { if (!ureq)
dev_err(dev, "ureq alloc fail\n");
return NULL; return NULL;
}
usbhs_pkt_init(&ureq->pkt); usbhs_pkt_init(&ureq->pkt);
ureq->urb = urb; ureq->urb = urb;
...@@ -388,10 +384,8 @@ static int usbhsh_endpoint_attach(struct usbhsh_hpriv *hpriv, ...@@ -388,10 +384,8 @@ static int usbhsh_endpoint_attach(struct usbhsh_hpriv *hpriv,
unsigned long flags; unsigned long flags;
uep = kzalloc(sizeof(struct usbhsh_ep), mem_flags); uep = kzalloc(sizeof(struct usbhsh_ep), mem_flags);
if (!uep) { if (!uep)
dev_err(dev, "usbhsh_ep alloc fail\n");
return -ENOMEM; return -ENOMEM;
}
/******************** spin lock ********************/ /******************** spin lock ********************/
usbhs_lock(priv, flags); usbhs_lock(priv, flags);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册