[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-19 Thread Inki Dae
2016년 12월 18일 07:12에 Laurent Pinchart 이(가) 쓴 글: > Hello Inki, > > On Saturday 17 Dec 2016 09:33:31 Inki Dae wrote: >> HI, >> >> Thanks for patch. Reasonable to me and go to misc excepting below one thing. >> Please check my comment. >> >> 2016-12-14 4:34 GMT+09:00 Laurent

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-18 Thread Laurent Pinchart
Hello Inki, On Saturday 17 Dec 2016 09:33:31 Inki Dae wrote: > HI, > > Thanks for patch. Reasonable to me and go to misc excepting below one thing. > Please check my comment. > > 2016-12-14 4:34 GMT+09:00 Laurent Pinchart: > > From: Laurent Pinchart > > > > The drm driver .load() operation is

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-17 Thread Laurent Pinchart
Hi Daniel, On Friday 16 Dec 2016 18:02:20 Daniel Stone wrote: > On 13 December 2016 at 19:34, Laurent Pinchart wrote: > > From: Laurent Pinchart > > > > The drm driver .load() operation is prone to race conditions as it > > initializes the driver after registering the device nodes. Its usage is

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-17 Thread Inki Dae
HI, Thanks for patch. Reasonable to me and go to misc excepting below one thing. Please check my comment. 2016-12-14 4:34 GMT+09:00 Laurent Pinchart : > From: Laurent Pinchart > > The drm driver .load() operation is prone to race conditions as it >

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-16 Thread Daniel Stone
Hey Laurent, On 13 December 2016 at 19:34, Laurent Pinchart wrote: > From: Laurent Pinchart > > The drm driver .load() operation is prone to race conditions as it > initializes the driver after registering the device nodes. Its usage is >

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Laurent Pinchart
Hi Daniel, On Tuesday 13 Dec 2016 22:49:51 Daniel Vetter wrote: > On Tue, Dec 13, 2016 at 04:32:30PM -0500, Sean Paul wrote: > > On Tue, Dec 13, 2016 at 4:30 PM, Laurent Pinchart wrote: > >> On Tuesday 13 Dec 2016 22:10:58 Daniel Vetter wrote: > >>> On Tue, Dec 13, 2016 at 09:34:05PM +0200,

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Laurent Pinchart
On Tuesday 13 Dec 2016 22:10:58 Daniel Vetter wrote: > On Tue, Dec 13, 2016 at 09:34:05PM +0200, Laurent Pinchart wrote: > > From: Laurent Pinchart > > > > The drm driver .load() operation is prone to race conditions as it > > initializes the driver after registering the device nodes. Its usage

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Daniel Vetter
On Tue, Dec 13, 2016 at 04:32:30PM -0500, Sean Paul wrote: > On Tue, Dec 13, 2016 at 4:30 PM, Laurent Pinchart > wrote: > > On Tuesday 13 Dec 2016 22:10:58 Daniel Vetter wrote: > >> On Tue, Dec 13, 2016 at 09:34:05PM +0200, Laurent Pinchart wrote: > >> > From: Laurent Pinchart > >> > > >> > The

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Daniel Vetter
On Tue, Dec 13, 2016 at 09:34:05PM +0200, Laurent Pinchart wrote: > From: Laurent Pinchart > > The drm driver .load() operation is prone to race conditions as it > initializes the driver after registering the device nodes. Its usage is > deprecated, inline it in the probe function and call

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Laurent Pinchart
From: Laurent Pinchart The drm driver .load() operation is prone to race conditions as it initializes the driver after registering the device nodes. Its usage is deprecated, inline it in the probe function and call drm_dev_alloc() and drm_dev_register()

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Sean Paul
On Tue, Dec 13, 2016 at 4:30 PM, Laurent Pinchart wrote: > On Tuesday 13 Dec 2016 22:10:58 Daniel Vetter wrote: >> On Tue, Dec 13, 2016 at 09:34:05PM +0200, Laurent Pinchart wrote: >> > From: Laurent Pinchart >> > >> > The drm driver .load() operation is prone to race conditions as it >> >

[PATCH 1/2] drm: exynos: Perform initialization/cleanup at probe/remove time

2016-12-13 Thread Sean Paul
On Tue, Dec 13, 2016 at 2:34 PM, Laurent Pinchart wrote: > From: Laurent Pinchart > > The drm driver .load() operation is prone to race conditions as it > initializes the driver after registering the device nodes. Its usage is > deprecated, inline it