Re: [PATCH] drm/atomic-helper: fix kerneldoc

2020-02-15 Thread Boris Brezillon
On Fri, 14 Feb 2020 09:13:40 +0100 Daniel Vetter wrote: > Just a tiny copypasta mistake. > > Fixes: 751465913f04 ("drm/bridge: Add a drm_bridge_state object") > Cc: Boris Brezillon Acked-by: Boris Brezillon > Cc: Neil Armstrong > Signed-off-by: Daniel Vetter > --- > drivers/gpu/drm/drm_at

Re: [PATCH] drm/atomic-helper: fix kerneldoc

2020-02-15 Thread Daniel Vetter
On Sat, Feb 15, 2020 at 10:19:36AM +0100, Boris Brezillon wrote: > On Fri, 14 Feb 2020 09:13:40 +0100 > Daniel Vetter wrote: > > > Just a tiny copypasta mistake. > > > > Fixes: 751465913f04 ("drm/bridge: Add a drm_bridge_state object") > > Cc: Boris Brezillon > > Acked-by: Boris Brezillon Th

Re: drm/print: clean up RATELIMITED macros

2020-02-15 Thread Daniel Vetter
On Fri, Feb 14, 2020 at 06:59:19PM +0100, Sam Ravnborg wrote: > From 6fdc9c030ba88e6d0d8abc319f3dfe83751d5900 Mon Sep 17 00:00:00 2001 > From: Sam Ravnborg > Date: Fri, 14 Feb 2020 18:54:42 +0100 > Subject: [PATCH v1 1/1] drm/print: clean up RATELIMITED macros > > Drop a few indirections, making

Re: drm/print: clean up RATELIMITED macros

2020-02-15 Thread Sam Ravnborg
Hi Daniel. On Sat, Feb 15, 2020 at 01:23:10PM +0100, Daniel Vetter wrote: > On Fri, Feb 14, 2020 at 06:59:19PM +0100, Sam Ravnborg wrote: > > From 6fdc9c030ba88e6d0d8abc319f3dfe83751d5900 Mon Sep 17 00:00:00 2001 > > From: Sam Ravnborg > > Date: Fri, 14 Feb 2020 18:54:42 +0100 > > Subject: [PATCH

[Bug 200695] Blank screen on RX 580 with amdgpu.dc=1 enabled (no displays detected)

2020-02-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=200695 Adam (magicm...@magicmyth.com) changed: What|Removed |Added CC||magicm...@magicmyth.com

[PATCH v1 1/1] drm: drop unused drm_crtc callback

2020-02-15 Thread Sam Ravnborg
struct drm_encoder_helper_funcs included a callback named drm_crtc. There are no users left - so drop it. There was one reference in drm_crtc_helper.c, which checked if the value was not NULL. As it was never assigned this check could be dropped. Signed-off-by: Sam Ravnborg Cc: Daniel Vetter --

Re: [PATCH v2 1/2] drm/client: Dual licence the file in GPL-2 and MIT

2020-02-15 Thread Jani Nikula
On Sat, 15 Feb 2020, Emmanuel Vadot wrote: > From: Emmanuel Vadot > > Contributors for this file are : > Chris Wilson > Denis Efremov > Jani Nikula > Maxime Ripard > Noralf Trønnes > Sam Ravnborg > Thomas Zimmermann > > Signed-off-by: Emmanuel Vadot I've only converted some logging. Ack

[PATCH v1 1/1] drm: drop unused drm_display_mode.private

2020-02-15 Thread Sam Ravnborg
drm_display_mode.private was only referenced in one place where is was copied but never assigned. Drop the copy and drop the field in drm_display_mode. Adjust the comment of private_flags as is referred to the comment for private. Signed-off-by: Sam Ravnborg Cc: Sean Paul Cc: Daniel Vetter Cc:

Re: [PATCH v2 0/2] Dual licence some files in GPL-2.0 and MIT

2020-02-15 Thread Sam Ravnborg
Hi Emmanuel. On Sat, Feb 15, 2020 at 07:09:09PM +0100, Emmanuel Vadot wrote: > Hello all, > > We had a discussion a while back with Noralf where he said that he wouldn't > mind dual licence his work under GPL-2 and MIT. > Those files are a problem with BSDs as we cannot include them. > For drm_cl

Re: [PATCH v2 1/2] drm/client: Dual licence the file in GPL-2 and MIT

2020-02-15 Thread Noralf Trønnes
Den 15.02.2020 19.09, skrev Emmanuel Vadot: > From: Emmanuel Vadot > > Contributors for this file are : > Chris Wilson > Denis Efremov > Jani Nikula > Maxime Ripard > Noralf Trønnes > Sam Ravnborg > Thomas Zimmermann > > Signed-off-by: Emmanuel Vadot > --- Acked-by: Noralf Trønnes _

Re: [PATCH v2 2/2] drm/format_helper: Dual licence the file in GPL 2 and MIT

2020-02-15 Thread Noralf Trønnes
Den 15.02.2020 19.09, skrev Emmanuel Vadot: > From: Emmanuel Vadot > > Contributors for this file are : > Gerd Hoffmann > Maxime Ripard > Noralf Trønnes > > Signed-off-by: Emmanuel Vadot > --- Acked-by: Noralf Trønnes ___ dri-devel mailing list

Re: [PATCH v1 1/1] drm: drop unused drm_crtc callback

2020-02-15 Thread Daniel Vetter
On Sat, Feb 15, 2020 at 6:33 PM Sam Ravnborg wrote: > > struct drm_encoder_helper_funcs included a callback > named drm_crtc. > > There are no users left - so drop it. > There was one reference in drm_crtc_helper.c, > which checked if the value was not NULL. > As it was never assigned this check c

Re: [PATCH v1 1/1] drm: drop unused drm_display_mode.private

2020-02-15 Thread Daniel Vetter
On Sat, Feb 15, 2020 at 7:35 PM Sam Ravnborg wrote: > > drm_display_mode.private was only referenced in one place where > is was copied but never assigned. > > Drop the copy and drop the field in drm_display_mode. > Adjust the comment of private_flags as is referred to the comment for > private. >

Re: [PATCH v1 1/1] drm: drop unused drm_display_mode.private

2020-02-15 Thread Sam Ravnborg
Hi Daniel. > > I also checked private_flags - it is used in a few modules. > > And it looked legit. > > > Iirc i915 used this, before we went full overdrive with entire atomic > state structure subclassing :-) $ git grep -l private_flags gma500/psb_intel_drv.h i915/display/intel_display.c i915/di

Re: [PATCH v1 1/1] drm: drop unused drm_crtc callback

2020-02-15 Thread Sam Ravnborg
On Sat, Feb 15, 2020 at 08:09:40PM +0100, Daniel Vetter wrote: > On Sat, Feb 15, 2020 at 6:33 PM Sam Ravnborg wrote: > > > > struct drm_encoder_helper_funcs included a callback > > named drm_crtc. > > > > There are no users left - so drop it. > > There was one reference in drm_crtc_helper.c, > > w

[Bug 206021] AMDGPU/DC: freesync disabled on the monitor side after the monitor sleeps and resumes

2020-02-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=206021 --- Comment #5 from Clément Guérin (li...@protonmail.com) --- Hitting that bug on linux 5.6-rc1 -- You are receiving this mail because: You are watching the assignee of the bug. ___ dri-devel mailing l

[Bug 202799] amd/dc: right monitor sometimes never comes back up on dual-display setup after locking session

2020-02-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=202799 Clément Guérin (li...@protonmail.com) changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 202445] amdgpu/dc: framerate dropping below adaptive sync range causes screen flickering

2020-02-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=202445 Clément Guérin (li...@protonmail.com) changed: What|Removed |Added Status|NEW |RESOLVED