Commit 0ed464e1 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Mauro Carvalho Chehab

V4L/DVB (7086): driver: tcm825x - fix logical typo error

This patch does fix potential NULL pointer dereference
due to logical typo error.

The issue is pointed out by
Guennadi Liakhovetski <g.liakhovetski@pengutronix.de>
Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
CC: Sakari Ailus <sakari.ailus@nokia.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 29e4e050
...@@ -851,7 +851,7 @@ static int tcm825x_probe(struct i2c_client *client) ...@@ -851,7 +851,7 @@ static int tcm825x_probe(struct i2c_client *client)
sensor->platform_data = client->dev.platform_data; sensor->platform_data = client->dev.platform_data;
if (sensor->platform_data == NULL if (sensor->platform_data == NULL
&& !sensor->platform_data->is_okay()) || !sensor->platform_data->is_okay())
return -ENODEV; return -ENODEV;
sensor->v4l2_int_device = &tcm825x_int_device; sensor->v4l2_int_device = &tcm825x_int_device;
......
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