From: Christophe JAILLET Date: Sat, 21 Aug 2021 11:12:53 +0000 (+0200) Subject: media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5c47dc6657543b3c4dffcbe741fb693b9b96796d;p=linux.git media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' A successful 'mxc_jpeg_attach_pm_domains()' call should be balanced by a corresponding 'mxc_jpeg_detach_pm_domains()' call in the error handling path of the probe, as already done in the remove function. Update the error handling path accordingly. Fixes: 2db16c6ed72c ("media: imx-jpeg: Add V4L2 driver for i.MX8 JPEG Encoder/Decoder") Signed-off-by: Christophe JAILLET Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/imx-jpeg/mxc-jpeg.c b/drivers/media/platform/imx-jpeg/mxc-jpeg.c index b3cc5199ef284..73e73b6f2e5b9 100644 --- a/drivers/media/platform/imx-jpeg/mxc-jpeg.c +++ b/drivers/media/platform/imx-jpeg/mxc-jpeg.c @@ -2086,6 +2086,8 @@ err_m2m: v4l2_device_unregister(&jpeg->v4l2_dev); err_register: + mxc_jpeg_detach_pm_domains(jpeg); + err_irq: return ret; }