media: imx-jpeg: Fix double free in mxc_jpeg_remove
The video_unregister_device already calls video_device_release, so remove video_device_release, to avoid a double free, when removing the module. This showed up in a repeated rmmod/insmod scenario. Signed-off-by: Mirela Rabulea <mirela.rabulea@nxp.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
4a15275b6a
commit
7385209770
|
@ -2101,7 +2101,6 @@ static int mxc_jpeg_remove(struct platform_device *pdev)
|
|||
mxc_jpeg_free_slot_data(jpeg, slot);
|
||||
|
||||
video_unregister_device(jpeg->dec_vdev);
|
||||
video_device_release(jpeg->dec_vdev);
|
||||
v4l2_m2m_release(jpeg->m2m_dev);
|
||||
v4l2_device_unregister(&jpeg->v4l2_dev);
|
||||
mxc_jpeg_detach_pm_domains(jpeg);
|
||||
|
|
Loading…
Reference in New Issue