Re: [PATCH 1/4] drm/plane: Remove drm_plane_init()

2022-09-16 Thread Laurent Pinchart
Hi Thomas, Thank you for the patch. On Fri, Sep 09, 2022 at 12:59:44PM +0200, Thomas Zimmermann wrote: > Open-code drm_plane_init() and remove the function from DRM. The > implementation of drm_plane_init() is a simple wrapper around a call > to drm_universal_plane_init(), so drivers can just

Re: [PATCH 1/4] drm/plane: Remove drm_plane_init()

2022-09-16 Thread Javier Martinez Canillas
Hello Thomas, On 9/9/22 12:59, Thomas Zimmermann wrote: > Open-code drm_plane_init() and remove the function from DRM. The > implementation of drm_plane_init() is a simple wrapper around a call > to drm_universal_plane_init(), so drivers can just use that instead. > > Signed-off-by: Thomas

Re: [PATCH 1/4] drm/plane: Remove drm_plane_init()

2022-09-13 Thread jyri . sarha
September 9, 2022 at 1:59 PM, "Thomas Zimmermann" mailto:tzimmerm...@suse.de?to=%22Thomas%20Zimmermann%22%20%3Ctzimmermann%40suse.de%3E > wrote: > > Open-code drm_plane_init() and remove the function from DRM. The > implementation of drm_plane_init() is a simple wrapper around a call > to

Re: [PATCH 1/4] drm/plane: Remove drm_plane_init()

2022-09-09 Thread Lyude Paul
Reviewed-by: Lyude Paul for common and nouveau bits On Fri, 2022-09-09 at 12:59 +0200, Thomas Zimmermann wrote: > Open-code drm_plane_init() and remove the function from DRM. The > implementation of drm_plane_init() is a simple wrapper around a call > to drm_universal_plane_init(), so drivers

[PATCH 1/4] drm/plane: Remove drm_plane_init()

2022-09-09 Thread Thomas Zimmermann
Open-code drm_plane_init() and remove the function from DRM. The implementation of drm_plane_init() is a simple wrapper around a call to drm_universal_plane_init(), so drivers can just use that instead. Signed-off-by: Thomas Zimmermann --- drivers/gpu/drm/drm_modeset_helper.c | 3 +-