Re: [PATCH] drm: rcar-du: Put reference to VSP device

2020-09-16 Thread Laurent Pinchart
Hi Kieran, On Wed, Sep 16, 2020 at 11:26:36AM +0100, Kieran Bingham wrote: > On 16/09/2020 00:38, Laurent Pinchart wrote: > > The reference to the VSP device acquired with of_find_device_by_node() > > in rcar_du_vsp_init() is never released. Fix it with a drmm action, > > which gets run both in th

Re: [PATCH] drm: rcar-du: Put reference to VSP device

2020-09-16 Thread Kieran Bingham
Hi Laurent, On 16/09/2020 00:38, Laurent Pinchart wrote: > The reference to the VSP device acquired with of_find_device_by_node() > in rcar_du_vsp_init() is never released. Fix it with a drmm action, > which gets run both in the probe error path and in the remove path. > > Fixes: 6d62ef3ac30b ("d

[PATCH] drm: rcar-du: Put reference to VSP device

2020-09-15 Thread Laurent Pinchart
The reference to the VSP device acquired with of_find_device_by_node() in rcar_du_vsp_init() is never released. Fix it with a drmm action, which gets run both in the probe error path and in the remove path. Fixes: 6d62ef3ac30b ("drm: rcar-du: Expose the VSP1 compositor through KMS planes") Report