Hi Laurent,

Thanks for the patch.

> -----Original Message-----
> From: Laurent Pinchart <[email protected]>
> Sent: 12 May 2026 00:56
> To: [email protected]; [email protected]
> Cc: [email protected]; tomi.valkeinen 
> <[email protected]>; kieran.bingham
> <[email protected]>; Biju Das <[email protected]>; 
> David Airlie
> <[email protected]>; Simona Vetter <[email protected]>
> Subject: [PATCH 04/11] drm: renesas: rz-du: Switch to new VSP API
> 
> The vsp1_du_setup_lif() function is deprecated. Use the new
> vsp1_du_enable() and vsp1_du_disable() functions instead.
> 
> Signed-off-by: Laurent Pinchart <[email protected]>
> ---
> Biju, I would like to merge this for v7.2 through the media tree instead of 
> the DRM tree. Would that be
> OK with you, or do you expect conflicting changes to the rz-du driver for 
> v7.2 ?

Yes, it is ok for me. I don't expect any conflicting changes to the rz-du 
driver for v7.2 in this file.

Acked-by: Biju Das <[email protected]>

Cheers,
Biju

> ---
>  drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c 
> b/drivers/gpu/drm/renesas/rz-
> du/rzg2l_du_vsp.c
> index bd486377f037..d5a1d36db2c1 100644
> --- a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c
> +++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_vsp.c
> @@ -55,12 +55,12 @@ void rzg2l_du_vsp_enable(struct rzg2l_du_crtc *crtc)
>               .callback_data = crtc,
>       };
> 
> -     vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, &cfg);
> +     vsp1_du_enable(crtc->vsp->vsp, crtc->vsp_pipe, &cfg);
>  }
> 
>  void rzg2l_du_vsp_disable(struct rzg2l_du_crtc *crtc)  {
> -     vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, NULL);
> +     vsp1_du_disable(crtc->vsp->vsp, crtc->vsp_pipe);
>  }
> 
>  void rzg2l_du_vsp_atomic_flush(struct rzg2l_du_crtc *crtc)
> --
> Regards,
> 
> Laurent Pinchart

Reply via email to