[PATCH] drm/exynos: fix return value check in lowlevel_buffer_allocate()
Inki Dae
inki.dae at samsung.com
Mon Sep 16 06:04:41 PDT 2013
Applied.
Thanks,
Inki Dae
2013/9/11 Wei Yongjun <weiyj.lk at gmail.com>
> From: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
>
> In case of error, the function drm_prime_pages_to_sg() returns ERR_PTR()
> and never returns NULL. The NULL test in the return value check should
> be replaced with IS_ERR().
>
> Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
> ---
> drivers/gpu/drm/exynos/exynos_drm_buf.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_buf.c
> b/drivers/gpu/drm/exynos/exynos_drm_buf.c
> index 3445a0f..e3ee833 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_buf.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_buf.c
> @@ -90,9 +90,9 @@ static int lowlevel_buffer_allocate(struct drm_device
> *dev,
> }
>
> buf->sgt = drm_prime_pages_to_sg(buf->pages, nr_pages);
> - if (!buf->sgt) {
> + if (IS_ERR(buf->sgt)) {
> DRM_ERROR("failed to get sg table.\n");
> - ret = -ENOMEM;
> + ret = PTR_ERR(buf->sgt);
> goto err_free_attrs;
> }
>
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130916/35bb5751/attachment.html>
More information about the dri-devel
mailing list