aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorJialin Zhang <zhangjialin11@huawei.com>2020-11-30 10:02:16 +0800
committerDaniel Vetter <daniel.vetter@ffwll.ch>2020-12-01 18:25:46 +0100
commit6926872ae24452d4f2176a3ba2dee659497de2c4 (patch)
treed3e3380b92100daa193d048cd583426620aa8b0f /drivers/gpu/drm
parentdrm/ttm/drivers: remove unecessary ttm_module.h include v2 (diff)
downloadlinux-dev-6926872ae24452d4f2176a3ba2dee659497de2c4.tar.xz
linux-dev-6926872ae24452d4f2176a3ba2dee659497de2c4.zip
drm/gma500: Fix error return code in psb_driver_load()
Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Fixes: 5c49fd3aa0ab ("gma500: Add the core DRM files and headers") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Jialin Zhang <zhangjialin11@huawei.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20201130020216.1906141-1-zhangjialin11@huawei.com
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/gma500/psb_drv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500/psb_drv.c
index cc2d59e8471d..134068f9328d 100644
--- a/drivers/gpu/drm/gma500/psb_drv.c
+++ b/drivers/gpu/drm/gma500/psb_drv.c
@@ -312,6 +312,8 @@ static int psb_driver_load(struct drm_device *dev, unsigned long flags)
if (ret)
goto out_err;
+ ret = -ENOMEM;
+
dev_priv->mmu = psb_mmu_driver_init(dev, 1, 0, 0);
if (!dev_priv->mmu)
goto out_err;