mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe()
[ Upstream commitc5647cae27] Smatch reports: drivers/gpu/drm/lima/lima_drv.c:396 lima_pdev_probe() warn: missing unwind goto? Store return value in err and goto 'err_out0' which has lima_sched_slab_fini() before returning. Fixes:a1d2a63399("drm/lima: driver for ARM Mali4xx GPUs") Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> Signed-off-by: Qiang Yu <yuq825@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230314052711.4061652-1-harshit.m.mogalapalli@oracle.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a260921b81
commit
e80c69eb79
@@ -392,8 +392,10 @@ static int lima_pdev_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
/* Allocate and initialize the DRM device. */
|
/* Allocate and initialize the DRM device. */
|
||||||
ddev = drm_dev_alloc(&lima_drm_driver, &pdev->dev);
|
ddev = drm_dev_alloc(&lima_drm_driver, &pdev->dev);
|
||||||
if (IS_ERR(ddev))
|
if (IS_ERR(ddev)) {
|
||||||
return PTR_ERR(ddev);
|
err = PTR_ERR(ddev);
|
||||||
|
goto err_out0;
|
||||||
|
}
|
||||||
|
|
||||||
ddev->dev_private = ldev;
|
ddev->dev_private = ldev;
|
||||||
ldev->ddev = ddev;
|
ldev->ddev = ddev;
|
||||||
|
|||||||
Reference in New Issue
Block a user