dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1]
@ 2012-08-07  6:57 Thomas Meyer
  2012-08-08  1:26 ` Inki Dae
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Meyer @ 2012-08-07  6:57 UTC (permalink / raw)
  To: inki.dae, jy0922.shim, sw0312.kim, kyungmin.park, airlied,
	dri-devel, linux-kernel

The semantic patch that makes this change is available
in scripts/coccinelle/api/err_cast.cocci.

More information about semantic patching is available at
http://coccinelle.lip6.fr/

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
---

diff -u -p a/drivers/gpu/drm/exynos/exynos_drm_gem.c b/drivers/gpu/drm/exynos/exynos_drm_gem.c
--- a/drivers/gpu/drm/exynos/exynos_drm_gem.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_gem.c
@@ -122,7 +122,7 @@ fail:
 		__free_page(pages[i]);
 
 	drm_free_large(pages);
-	return ERR_PTR(PTR_ERR(p));
+	return ERR_CAST(p);
 }
 
 static void exynos_gem_put_pages(struct drm_gem_object *obj,

^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: [PATCH] drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1]
  2012-08-07  6:57 [PATCH] drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1] Thomas Meyer
@ 2012-08-08  1:26 ` Inki Dae
  0 siblings, 0 replies; 2+ messages in thread
From: Inki Dae @ 2012-08-08  1:26 UTC (permalink / raw)
  To: 'Thomas Meyer', jy0922.shim, sw0312.kim, kyungmin.park,
	airlied, dri-devel, linux-kernel



> -----Original Message-----
> From: Thomas Meyer [mailto:thomas@m3y3r.de]
> Sent: Tuesday, August 07, 2012 3:57 PM
> To: inki.dae@samsung.com; jy0922.shim@samsung.com; sw0312.kim@samsung.com;
> kyungmin.park@samsung.com; airlied@linux.ie; dri-
> devel@lists.freedesktop.org; linux-kernel@vger.kernel.org
> Subject: [PATCH] drm/exynos: Use ERR_CAST inlined function instead of
> ERR_PTR(PTR_ERR(.. [1]
> 
> The semantic patch that makes this change is available
> in scripts/coccinelle/api/err_cast.cocci.
> 
> More information about semantic patching is available at
> http://coccinelle.lip6.fr/
> 
> Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
> ---
> 
> diff -u -p a/drivers/gpu/drm/exynos/exynos_drm_gem.c
> b/drivers/gpu/drm/exynos/exynos_drm_gem.c
> --- a/drivers/gpu/drm/exynos/exynos_drm_gem.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_gem.c
> @@ -122,7 +122,7 @@ fail:
>  		__free_page(pages[i]);
> 
>  	drm_free_large(pages);
> -	return ERR_PTR(PTR_ERR(p));
> +	return ERR_CAST(p);
>  }
> 
>  static void exynos_gem_put_pages(struct drm_gem_object *obj,

Applied.

Thanks for your patch.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-08  1:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07  6:57 [PATCH] drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1] Thomas Meyer
2012-08-08  1:26 ` Inki Dae

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox