Re: [PATCH v3 05/21] drm/bridge: Introduce drm_bridge_chain_get_next_bridge()

2019-11-24 Thread Laurent Pinchart
Hi Boris, On Sun, Nov 24, 2019 at 11:56:16AM +0100, Boris Brezillon wrote: > On Sun, 24 Nov 2019 12:33:35 +0200 Laurent Pinchart wrote: > > On Wed, Oct 23, 2019 at 05:44:56PM +0200, Boris Brezillon wrote: > > > And use it in drivers accessing the bridge->next field directly. > > > This is part of

Re: [PATCH v3 05/21] drm/bridge: Introduce drm_bridge_chain_get_next_bridge()

2019-11-24 Thread Boris Brezillon
On Sun, 24 Nov 2019 12:33:35 +0200 Laurent Pinchart wrote: > Hi Boris, > > Thank you for the patch. > > On Wed, Oct 23, 2019 at 05:44:56PM +0200, Boris Brezillon wrote: > > And use it in drivers accessing the bridge->next field directly. > > This is part of our attempt to make the bridge chain

Re: [PATCH v3 05/21] drm/bridge: Introduce drm_bridge_chain_get_next_bridge()

2019-11-24 Thread Laurent Pinchart
Hi Boris, Thank you for the patch. On Wed, Oct 23, 2019 at 05:44:56PM +0200, Boris Brezillon wrote: > And use it in drivers accessing the bridge->next field directly. > This is part of our attempt to make the bridge chain a double-linked list > based on the generic list helpers. > >

Re: [PATCH v3 05/21] drm/bridge: Introduce drm_bridge_chain_get_next_bridge()

2019-10-25 Thread Neil Armstrong
On 23/10/2019 17:44, Boris Brezillon wrote: > And use it in drivers accessing the bridge->next field directly. > This is part of our attempt to make the bridge chain a double-linked list > based on the generic list helpers. > > Signed-off-by: Boris Brezillon > --- > Changes in v3: > * Inline

[PATCH v3 05/21] drm/bridge: Introduce drm_bridge_chain_get_next_bridge()

2019-10-23 Thread Boris Brezillon
And use it in drivers accessing the bridge->next field directly. This is part of our attempt to make the bridge chain a double-linked list based on the generic list helpers. Signed-off-by: Boris Brezillon --- Changes in v3: * Inline drm_bridge_chain_get_next_bridge() (Suggested by Laurent)