Commit 59f4d741 authored by Markus Elfring's avatar Markus Elfring Committed by Lee Jones

mfd: viperboard: Delete an error message for a failed memory allocation in vprbrd_probe()

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 9363be21
...@@ -59,10 +59,8 @@ static int vprbrd_probe(struct usb_interface *interface, ...@@ -59,10 +59,8 @@ static int vprbrd_probe(struct usb_interface *interface,
/* allocate memory for our device state and initialize it */ /* allocate memory for our device state and initialize it */
vb = kzalloc(sizeof(*vb), GFP_KERNEL); vb = kzalloc(sizeof(*vb), GFP_KERNEL);
if (vb == NULL) { if (!vb)
dev_err(&interface->dev, "Out of memory\n");
return -ENOMEM; return -ENOMEM;
}
mutex_init(&vb->lock); mutex_init(&vb->lock);
......
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