[PATCH] drm/exynos: fix error return code in exynos_drm_load()
Inki Dae
inki.dae at samsung.com
Sun May 12 00:25:46 PDT 2013
2013/5/7 Wei Yongjun <weiyj.lk at gmail.com>
> From: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
>
> Fix to return -ENOMEM in the exynos_plane_init() error handling
> case instead of 0, as done elsewhere in this function.
>
> Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
> ---
> drivers/gpu/drm/exynos/exynos_drm_drv.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c
> b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> index ba6d995..3a10373 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> @@ -91,8 +91,10 @@ static int exynos_drm_load(struct drm_device *dev,
> unsigned long flags)
> unsigned int possible_crtcs = (1 << MAX_CRTC) - 1;
>
> plane = exynos_plane_init(dev, possible_crtcs, false);
> - if (!plane)
> + if (!plane) {
> + ret = -ENOMEM;
>
I think It's better that exynos_plane_init function returns ERR_PTR(error)
instead of NULL and ret = PTR_ERR(plane) if IS_ERR(plane) so could you
resend updated patch again?
Thanks,
Inki Dae
> goto err_release_iommu_mapping;
> + }
> }
>
> ret = drm_vblank_init(dev, MAX_CRTC);
>
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130512/57008ed4/attachment.html>
More information about the dri-devel
mailing list