mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 17:26:40 +07:00
[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:
parent
73446966b9
commit
e44e9489a7
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user