From: Markus Elfring <elfr...@users.sourceforge.net>
Date: Sat, 2 Sep 2017 16:44:36 +0200

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

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfr...@users.sourceforge.net>
---
 drivers/media/i2c/soc_camera/ov9740.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/media/i2c/soc_camera/ov9740.c 
b/drivers/media/i2c/soc_camera/ov9740.c
index cc07b7ae5407..f44f5da795f9 100644
--- a/drivers/media/i2c/soc_camera/ov9740.c
+++ b/drivers/media/i2c/soc_camera/ov9740.c
@@ -939,7 +939,5 @@ static int ov9740_probe(struct i2c_client *client,
-       if (!priv) {
-               dev_err(&client->dev, "Failed to allocate private data!\n");
+       if (!priv)
                return -ENOMEM;
-       }
 
        v4l2_i2c_subdev_init(&priv->subdev, client, &ov9740_subdev_ops);
        v4l2_ctrl_handler_init(&priv->hdl, 13);
-- 
2.14.1

Reply via email to