[media] DaVinci-VPIF-Capture: Delete an error message for a failed memory allocation
Omit an extra message for a memory allocation failure in this function. Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
b442c46f1b
commit
bc285799f7
|
@ -1461,7 +1461,6 @@ static __init int vpif_probe(struct platform_device *pdev)
|
||||||
subdev_count = vpif_obj.config->subdev_count;
|
subdev_count = vpif_obj.config->subdev_count;
|
||||||
vpif_obj.sd = kcalloc(subdev_count, sizeof(*vpif_obj.sd), GFP_KERNEL);
|
vpif_obj.sd = kcalloc(subdev_count, sizeof(*vpif_obj.sd), GFP_KERNEL);
|
||||||
if (vpif_obj.sd == NULL) {
|
if (vpif_obj.sd == NULL) {
|
||||||
vpif_err("unable to allocate memory for subdevice pointers\n");
|
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto vpif_unregister;
|
goto vpif_unregister;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue