Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-03-02 Thread Laurent Pinchart
Hi Kieran, On Mon, Mar 01, 2021 at 11:52:26AM +, Kieran Bingham wrote: > On 01/03/2021 10:30, Geert Uytterhoeven wrote: > > On Thu, Jan 14, 2021 at 11:00 AM Geert Uytterhoeven wrote: > >> On Wed, Jan 13, 2021 at 6:02 PM Kieran Bingham wrote: > >>> The encoder allocation was converted to a DRM

Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-03-01 Thread Kieran Bingham
Laurent, On 01/03/2021 10:30, Geert Uytterhoeven wrote: > On Thu, Jan 14, 2021 at 11:00 AM Geert Uytterhoeven > wrote: >> On Wed, Jan 13, 2021 at 6:02 PM Kieran Bingham >> wrote: >>> The encoder allocation was converted to a DRM managed resource at the >>> same time as the addition of a new he

Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-03-01 Thread Geert Uytterhoeven
On Thu, Jan 14, 2021 at 11:00 AM Geert Uytterhoeven wrote: > On Wed, Jan 13, 2021 at 6:02 PM Kieran Bingham > wrote: > > The encoder allocation was converted to a DRM managed resource at the > > same time as the addition of a new helper drmm_encoder_alloc() which > > simplifies the same process.

Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-01-15 Thread Kieran Bingham
Hi Laurent, On 13/01/2021 22:45, Laurent Pinchart wrote: > Hi Kieran, > > Thank you for the patch. > > On Wed, Jan 13, 2021 at 05:02:53PM +, Kieran Bingham wrote: >> The encoder allocation was converted to a DRM managed resource at the >> same time as the addition of a new helper drmm_encode

Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-01-14 Thread Geert Uytterhoeven
On Wed, Jan 13, 2021 at 6:02 PM Kieran Bingham wrote: > The encoder allocation was converted to a DRM managed resource at the > same time as the addition of a new helper drmm_encoder_alloc() which > simplifies the same process. > > Convert the custom drm managed resource allocation of the encoder

Re: [PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-01-13 Thread Laurent Pinchart
Hi Kieran, Thank you for the patch. On Wed, Jan 13, 2021 at 05:02:53PM +, Kieran Bingham wrote: > The encoder allocation was converted to a DRM managed resource at the > same time as the addition of a new helper drmm_encoder_alloc() which > simplifies the same process. > > Convert the custom

[PATCH] drm: rcar-du: Use drmm_encoder_alloc() to manage encoder

2021-01-13 Thread Kieran Bingham
The encoder allocation was converted to a DRM managed resource at the same time as the addition of a new helper drmm_encoder_alloc() which simplifies the same process. Convert the custom drm managed resource allocation of the encoder with the helper to simplify the implementation, and prevent hitt