Commit d7f040e9 authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman

usb: misc: appledisplay: don't print on ENOMEM

All kmalloc-based functions print enough information on failures.
Signed-off-by: default avatarWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a02b55c8
...@@ -238,7 +238,6 @@ static int appledisplay_probe(struct usb_interface *iface, ...@@ -238,7 +238,6 @@ static int appledisplay_probe(struct usb_interface *iface,
pdata = kzalloc(sizeof(struct appledisplay), GFP_KERNEL); pdata = kzalloc(sizeof(struct appledisplay), GFP_KERNEL);
if (!pdata) { if (!pdata) {
retval = -ENOMEM; retval = -ENOMEM;
dev_err(&iface->dev, "Out of memory\n");
goto error; goto error;
} }
...@@ -252,8 +251,6 @@ static int appledisplay_probe(struct usb_interface *iface, ...@@ -252,8 +251,6 @@ static int appledisplay_probe(struct usb_interface *iface,
pdata->msgdata = kmalloc(ACD_MSG_BUFFER_LEN, GFP_KERNEL); pdata->msgdata = kmalloc(ACD_MSG_BUFFER_LEN, GFP_KERNEL);
if (!pdata->msgdata) { if (!pdata->msgdata) {
retval = -ENOMEM; retval = -ENOMEM;
dev_err(&iface->dev,
"Allocating buffer for control messages failed\n");
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment