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


Groups > linux.kernel > #1392271 > unrolled thread

Re: [PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event()

Started byDaniel Vetter <daniel@ffwll.ch>
First post2016-05-02 17:10 +0200
Last post2016-05-02 17:10 +0200
Articles 1 — 1 participant

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

  Re: [PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event() Daniel Vetter <daniel@ffwll.ch> - 2016-05-02 17:10 +0200

#1392271 — Re: [PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event()

FromDaniel Vetter <daniel@ffwll.ch>
Date2016-05-02 17:10 +0200
SubjectRe: [PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event()
Message-ID<runDY-5IL-9@gated-at.bofh.it>
On Fri, Apr 15, 2016 at 11:55:16AM +0900, Michel Dänzer wrote:
> On 15.04.2016 02:48, Gustavo Padovan wrote:
> > From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> > 
> > Replace the legacy drm_send_vblank_event() with the new helper function.
> > 
> > Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> > ---
> >  drivers/gpu/drm/amd/amdgpu/dce_v10_0.c | 2 +-
> >  drivers/gpu/drm/amd/amdgpu/dce_v11_0.c | 2 +-
> >  drivers/gpu/drm/amd/amdgpu/dce_v8_0.c  | 2 +-
> >  3 files changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> > index 6de2ce53..92c5a71 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> > @@ -3370,7 +3370,7 @@ static int dce_v10_0_pageflip_irq(struct amdgpu_device *adev,
> >  
> >  	/* wakeup usersapce */
> >  	if (works->event)
> > -		drm_send_vblank_event(adev->ddev, crtc_id, works->event);
> > +		drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
> >  
> >  	spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
> >  
> > diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
> > index e9ccc6b..2f784f2 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
> > @@ -3366,7 +3366,7 @@ static int dce_v11_0_pageflip_irq(struct amdgpu_device *adev,
> >  
> >  	/* wakeup usersapce */
> >  	if(works->event)
> > -		drm_send_vblank_event(adev->ddev, crtc_id, works->event);
> > +		drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
> >  
> >  	spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
> >  
> > diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c
> > index e56b55d..9155e3b 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c
> > @@ -3379,7 +3379,7 @@ static int dce_v8_0_pageflip_irq(struct amdgpu_device *adev,
> >  
> >  	/* wakeup usersapce */
> >  	if (works->event)
> > -		drm_send_vblank_event(adev->ddev, crtc_id, works->event);
> > +		drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
> >  
> >  	spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
> >  
> > 
> 
> This patch and patch 8 are
> 
> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>

Both applied to drm-misc.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web