Commit 2ac09892 authored by Markus Elfring's avatar Markus Elfring Committed by Mauro Carvalho Chehab

[media] DaVinci-VPBE: Delete two error messages for a failed memory allocation

The script "checkpatch.pl" pointed information out like the following.

WARNING: Possible unnecessary 'out of memory' message

Thus remove such a logging statement in two functions.

Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdfSigned-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent f42afd29
...@@ -680,8 +680,6 @@ static int vpbe_initialize(struct device *dev, struct vpbe_device *vpbe_dev) ...@@ -680,8 +680,6 @@ static int vpbe_initialize(struct device *dev, struct vpbe_device *vpbe_dev)
sizeof(*vpbe_dev->encoders), sizeof(*vpbe_dev->encoders),
GFP_KERNEL); GFP_KERNEL);
if (NULL == vpbe_dev->encoders) { if (NULL == vpbe_dev->encoders) {
v4l2_err(&vpbe_dev->v4l2_dev,
"unable to allocate memory for encoders sub devices");
ret = -ENOMEM; ret = -ENOMEM;
goto fail_dev_unregister; goto fail_dev_unregister;
} }
...@@ -837,10 +835,9 @@ static int vpbe_probe(struct platform_device *pdev) ...@@ -837,10 +835,9 @@ static int vpbe_probe(struct platform_device *pdev)
} }
vpbe_dev = kzalloc(sizeof(*vpbe_dev), GFP_KERNEL); vpbe_dev = kzalloc(sizeof(*vpbe_dev), GFP_KERNEL);
if (vpbe_dev == NULL) { if (!vpbe_dev)
v4l2_err(pdev->dev.driver, "Unable to allocate memory for vpbe_device\n");
return -ENOMEM; return -ENOMEM;
}
vpbe_dev->cfg = cfg; vpbe_dev->cfg = cfg;
vpbe_dev->ops = vpbe_dev_ops; vpbe_dev->ops = vpbe_dev_ops;
vpbe_dev->pdev = &pdev->dev; vpbe_dev->pdev = &pdev->dev;
......
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