mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 08:31:37 +00:00
[media] cx25840: fix return logic when media entity init fails
There's no need to free state, as it was allocated via devm_kzalloc(). Also, let's return the error code, instead of something else. Reported-by: Prabhakar Lad <prabhakar.csengg@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
3d263114c4
commit
db74935905
@ -5205,8 +5205,7 @@ static int cx25840_probe(struct i2c_client *client,
|
||||
state->pads, 0);
|
||||
if (ret < 0) {
|
||||
v4l_info(client, "failed to initialize media entity!\n");
|
||||
kfree(state);
|
||||
return -ENODEV;
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user