Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1709537 > unrolled thread

[PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers

Started byCihangir Akturk <cakturk@gmail.com>
First post2017-08-11 14:40 +0200
Last post2017-08-11 15:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers Cihangir Akturk <cakturk@gmail.com> - 2017-08-11 14:40 +0200
    Re: [PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put()  helpers Philipp Zabel <p.zabel@pengutronix.de> - 2017-08-11 15:10 +0200

#1709537 — [PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers

FromCihangir Akturk <cakturk@gmail.com>
Date2017-08-11 14:40 +0200
Subject[PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers
Message-ID<udhol-3ww-7@gated-at.bofh.it>
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference()
and drm_*_unreference() helpers.

drm_*_reference() and drm_*_unreference() functions are just
compatibility alias for drm_*_get() and drm_*_put() and should not be
used by new code. So convert all users of compatibility functions to
use the new APIs.

Generated by: scripts/coccinelle/api/drm-get-put.cocci

Signed-off-by: Cihangir Akturk <cakturk@gmail.com>
---
 drivers/gpu/drm/imx/ipuv3-crtc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c
index 53e0b24..9a99618 100644
--- a/drivers/gpu/drm/imx/ipuv3-crtc.c
+++ b/drivers/gpu/drm/imx/ipuv3-crtc.c
@@ -115,7 +115,7 @@ static void imx_drm_crtc_reset(struct drm_crtc *crtc)
 
 	if (crtc->state) {
 		if (crtc->state->mode_blob)
-			drm_property_unreference_blob(crtc->state->mode_blob);
+			drm_property_blob_put(crtc->state->mode_blob);
 
 		state = to_imx_crtc_state(crtc->state);
 		memset(state, 0, sizeof(*state));
-- 
2.7.4

[toc] | [next] | [standalone]


#1709591 — Re: [PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers

FromPhilipp Zabel <p.zabel@pengutronix.de>
Date2017-08-11 15:10 +0200
SubjectRe: [PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers
Message-ID<udhRo-3Vr-19@gated-at.bofh.it>
In reply to#1709537
On Fri, 2017-08-11 at 15:32 +0300, Cihangir Akturk wrote:
> Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference()
> and drm_*_unreference() helpers.
> 
> drm_*_reference() and drm_*_unreference() functions are just
> compatibility alias for drm_*_get() and drm_*_put() and should not be
> used by new code. So convert all users of compatibility functions to
> use the new APIs.
> 
> Generated by: scripts/coccinelle/api/drm-get-put.cocci
> 
> > Signed-off-by: Cihangir Akturk <cakturk@gmail.com>
> ---
>  drivers/gpu/drm/imx/ipuv3-crtc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c
> index 53e0b24..9a99618 100644
> --- a/drivers/gpu/drm/imx/ipuv3-crtc.c
> +++ b/drivers/gpu/drm/imx/ipuv3-crtc.c
> @@ -115,7 +115,7 @@ static void imx_drm_crtc_reset(struct drm_crtc *crtc)
>  
> >  	if (crtc->state) {
> >  		if (crtc->state->mode_blob)
> > -			drm_property_unreference_blob(crtc->state->mode_blob);
> > +			drm_property_blob_put(crtc->state->mode_blob);
>  
> >  		state = to_imx_crtc_state(crtc->state);
> >  		memset(state, 0, sizeof(*state));

Thank you, applied to imx-drm/next.

regards
Philipp

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web