[media] blackfin-capture: Delete an error message 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 statement here.

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:
Markus Elfring 2016-10-09 16:30:18 -03:00 коммит произвёл Mauro Carvalho Chehab
Родитель 73446966b9
Коммит e44e9489a7
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -802,10 +802,8 @@ static int bcap_probe(struct platform_device *pdev)
}
bcap_dev = kzalloc(sizeof(*bcap_dev), GFP_KERNEL);
if (!bcap_dev) {
v4l2_err(pdev->dev.driver, "Unable to alloc bcap_dev\n");
if (!bcap_dev)
return -ENOMEM;
}
bcap_dev->cfg = config;