Re: [PATCH v2 01/28] drm: Introduce drm_bridge_init()

2019-12-05 Thread Mihail Atanassov
Hi Laurent, On Thursday, 5 December 2019 12:40:22 GMT Laurent Pinchart wrote: > Hi Mihail, > > Thank you for the patch. Thanks for the quick reviews :). > > On Wed, Dec 04, 2019 at 11:48:02AM +, Mihail Atanassov wrote: > > A simple convenience function to initialize the struct drm_bridge.

Re: [PATCH v2 01/28] drm: Introduce drm_bridge_init()

2019-12-05 Thread Laurent Pinchart
Hi Mihail, Thank you for the patch. On Wed, Dec 04, 2019 at 11:48:02AM +, Mihail Atanassov wrote: > A simple convenience function to initialize the struct drm_bridge. The > goal is to standardize initialization for any bridge registered with > drm_bridge_add() so that we can later add device

Re: [PATCH v2 01/28] drm: Introduce drm_bridge_init()

2019-12-04 Thread Daniel Vetter
On Wed, Dec 04, 2019 at 11:48:02AM +, Mihail Atanassov wrote: > A simple convenience function to initialize the struct drm_bridge. The > goal is to standardize initialization for any bridge registered with > drm_bridge_add() so that we can later add device links for consumers of > those

[PATCH v2 01/28] drm: Introduce drm_bridge_init()

2019-12-04 Thread Mihail Atanassov
A simple convenience function to initialize the struct drm_bridge. The goal is to standardize initialization for any bridge registered with drm_bridge_add() so that we can later add device links for consumers of those bridges. v2: - s/WARN_ON(!funcs)/WARN_ON(!funcs || !dev)/ as suggested by