Re: [Intel-gfx] [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-14 Thread Daniel Vetter
On Tue, Feb 14, 2017 at 09:43:45PM +, Chris Wilson wrote: > On Tue, Feb 14, 2017 at 10:36:09PM +0100, Daniel Vetter wrote: > > On Mon, Feb 13, 2017 at 12:17:27PM -0500, Sean Paul wrote: > > > On Mon, Feb 13, 2017 at 3:59 AM, Chris Wilson > > > wrote: > > > > On Mon,

Re: [Intel-gfx] [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-14 Thread Chris Wilson
On Tue, Feb 14, 2017 at 10:36:09PM +0100, Daniel Vetter wrote: > On Mon, Feb 13, 2017 at 12:17:27PM -0500, Sean Paul wrote: > > On Mon, Feb 13, 2017 at 3:59 AM, Chris Wilson > > wrote: > > > On Mon, Feb 13, 2017 at 08:41:10AM +0100, Thierry Reding wrote: > > >> On Fri,

Re: [Intel-gfx] [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-14 Thread Daniel Vetter
On Mon, Feb 13, 2017 at 12:17:27PM -0500, Sean Paul wrote: > On Mon, Feb 13, 2017 at 3:59 AM, Chris Wilson > wrote: > > On Mon, Feb 13, 2017 at 08:41:10AM +0100, Thierry Reding wrote: > >> On Fri, Feb 10, 2017 at 07:59:13PM +, Chris Wilson wrote: > >> > The warnings

Re: [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-13 Thread Sean Paul
On Mon, Feb 13, 2017 at 3:59 AM, Chris Wilson wrote: > On Mon, Feb 13, 2017 at 08:41:10AM +0100, Thierry Reding wrote: >> On Fri, Feb 10, 2017 at 07:59:13PM +, Chris Wilson wrote: >> > The warnings from parsing the EDID are not driver errors, but the >> > "normal but

Re: [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-13 Thread Chris Wilson
On Mon, Feb 13, 2017 at 08:41:10AM +0100, Thierry Reding wrote: > On Fri, Feb 10, 2017 at 07:59:13PM +, Chris Wilson wrote: > > The warnings from parsing the EDID are not driver errors, but the > > "normal but significant" conditions from the external device. As such, > > they do not need the

Re: [PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-12 Thread Thierry Reding
On Fri, Feb 10, 2017 at 07:59:13PM +, Chris Wilson wrote: > The warnings from parsing the EDID are not driver errors, but the > "normal but significant" conditions from the external device. As such, > they do not need the ferocity of an *ERROR*, but can use the less harsh > DRM_NOTE instead. >

[PATCH] drm: Reduce EDID warnings from DRM_ERROR to DRM_NOTE

2017-02-10 Thread Chris Wilson
The warnings from parsing the EDID are not driver errors, but the "normal but significant" conditions from the external device. As such, they do not need the ferocity of an *ERROR*, but can use the less harsh DRM_NOTE instead. Signed-off-by: Chris Wilson ---