media: drivers: Adjust checks for null pointers
The script “checkpatch.pl” pointed information out like the following. Comparison to NULL could be written !… Thus fix the affected source code places. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Hans Verkuil <hansverk@cisco.com>
This commit is contained in:

committad av
Mauro Carvalho Chehab

förälder
2d3da59ff1
incheckning
af28c99628
@@ -1948,7 +1948,7 @@ static int adv76xx_set_format(struct v4l2_subdev *sd,
|
||||
return -EINVAL;
|
||||
|
||||
info = adv76xx_format_info(state, format->format.code);
|
||||
if (info == NULL)
|
||||
if (!info)
|
||||
info = adv76xx_format_info(state, MEDIA_BUS_FMT_YUYV8_2X8);
|
||||
|
||||
adv76xx_fill_format(state, &format->format);
|
||||
@@ -2256,7 +2256,7 @@ static int adv76xx_get_edid(struct v4l2_subdev *sd, struct v4l2_edid *edid)
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (data == NULL)
|
||||
if (!data)
|
||||
return -ENODATA;
|
||||
|
||||
if (edid->start_block >= state->edid.blocks)
|
||||
@@ -3480,7 +3480,7 @@ static int adv76xx_probe(struct i2c_client *client,
|
||||
state->i2c_clients[i] =
|
||||
adv76xx_dummy_client(sd, state->pdata.i2c_addresses[i],
|
||||
0xf2 + i);
|
||||
if (state->i2c_clients[i] == NULL) {
|
||||
if (!state->i2c_clients[i]) {
|
||||
err = -ENOMEM;
|
||||
v4l2_err(sd, "failed to create i2c client %u\n", i);
|
||||
goto err_i2c;
|
||||
|
Referens i nytt ärende
Block a user