RE: 答复: [RESEND 1/3] drm: fsl-dcu: Fix no fb check bug

2016-01-04 Thread Meng Yi
Hi, Daniel Thanks for your clarification, and I will fix this error. -- Meng -Original Message- From: Daniel Stone [mailto:dan...@fooishbar.org] Sent: Friday, January 01, 2016 11:10 PM To: Meng Yi Cc: Stefan Agner ; dri-devel at lists.freedesktop.org; Yi Meng-B56799 Subject: Re

[PATCH v7 06/14] drm/mediatek: Add HDMI support

2016-01-04 Thread Philipp Zabel
Am Dienstag, den 29.12.2015, 16:49 +0800 schrieb Yingjoe Chen: > On Mon, 2015-11-30 at 22:07 +0100, Philipp Zabel wrote: > > From: Jie Qiu > > > > This patch adds drivers for the HDMI bridge connected to the DPI0 > > display subsystem function block, for the HDMI DDC block, and for > > the HDMI P

[Bug 80419] XCOM: Enemy Unknown Causes lockup

2016-01-04 Thread bugzilla-dae...@freedesktop.org
(VBOs don't need this special treatment.) -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20160104/11232b25/attachment.html>

radeon framebuffer tiling

2016-01-04 Thread Jay Cornwall
On 2016-01-04 12:14, Alex Deucher wrote: > On Mon, Jan 4, 2016 at 12:57 PM, Jay Cornwall wrote: >> Hi, >> >> dce4_crtc_do_set_base is the only location in which >> EVERGREEN_GRPH_CONTROL >> is updated. This currently configures a non-tiled framebuffer on my SI >> system. >> >> This design preve

[PATCH 1/1] apple-gmux: Add initial documentation

2016-01-04 Thread Darren Hart
On Mon, Jan 04, 2016 at 05:52:06PM +0100, Lukas Wunner wrote: > Document what I've learned so far about the gmux so that we can > collaboratively reverse-engineer its remaining unknown bits > without everyone having to start from scratch. > +Jon Corbet +Daniel Vetter +linux-doc Any concerns with

[PATCH] drm/exynos: fix kernel panic issue at drm releasing

2016-01-04 Thread Daniel Stone
Hi Inki, On 4 January 2016 at 12:57, Inki Dae wrote: > 2015년 12월 24일 22:32에 Daniel Stone 이(가) 쓴 글: >> On 24 December 2015 at 09:10, Inki Dae wrote: >>> +void exynos_drm_crtc_cancel_page_flip(struct drm_crtc *crtc) >>> +{ >>> + struct exynos_drm_crtc *exynos_crtc = to_exynos

[PATCH 0/1] apple-gmux: Add initial documentation

2016-01-04 Thread Darren Hart
On Mon, Jan 04, 2016 at 05:52:06PM +0100, Lukas Wunner wrote: > Initial documentation for apple-gmux. If anyone has additions or > corrections please let me know. > > This uses asciidoc markup, an HTML rendered version is available here: > http://wunner.de/gpu_docs/handlers.html > > If you prefer

[patch] drm/amdgpu: double unlock in amdgpu_set_dpm_forced_performance_level()

2016-01-04 Thread Dan Carpenter
We recently moved the locking around and accidentally introduced a double unlock bug. Fixes: 1b5708ffb103 ('drm/amdgpu: export amd_powerplay_func to amdgpu and other ip block') Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_

[patch] drm/amd/powerplay: fix a reversed condition

2016-01-04 Thread Dan Carpenter
This test was reversed so it would end up leading to a NULL dereference. Fixes: 4630f0faae80 ('drm/amd/powerplay: add Carrizo smu support') Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/cz_smumgr.c b/drivers/gpu/drm/amd/powerplay/smumgr/cz_smumgr.c index e74023b

[patch] drm/amdgpu/cgs: cleanup some indenting

2016-01-04 Thread Dan Carpenter
This code is indented too far. Also we normally use spaces to align if statement conditions. Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c index 6fa0fea..59485d0 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c +

[patch] drm/amd/powerplay: precedence bug in init_non_clock_fields()

2016-01-04 Thread Dan Carpenter
The cast to uint8_t happens before the right shift so this always sets .m3arb to zero. The cast is actually a no-op so we can remove it. Fixes: 3bace3591493 ('drm/amd/powerplay: add hardware manager sub-component') Signed-off-by: Dan Carpenter --- Static analysis stuff. Not tested. diff --git

drm/amd/powerplay: add hardware manager sub-component

2016-01-04 Thread Dan Carpenter
Hi Jammy Zhou, The powerplay patches introduce a lot of Smatch static checker warnings. I started to fix them but there are quite a few so I decided to just pass them back to you instead. They're mostly about small mistakes with indenting or return -1 instead of -ENOMEM. There are a ball of plac

[patch] drm/amd/powerplay: fix a reversed condition

2016-01-04 Thread Alex Deucher
On Mon, Jan 4, 2016 at 3:42 PM, Dan Carpenter wrote: > This test was reversed so it would end up leading to a NULL dereference. > > Fixes: 4630f0faae80 ('drm/amd/powerplay: add Carrizo smu support') > Signed-off-by: Dan Carpenter Applied. thanks! Alex > > diff --git a/drivers/gpu/drm/amd/pow

[patch] drm/amdgpu/cgs: cleanup some indenting

2016-01-04 Thread Alex Deucher
On Mon, Jan 4, 2016 at 3:43 PM, Dan Carpenter wrote: > This code is indented too far. Also we normally use spaces to align if > statement conditions. > > Signed-off-by: Dan Carpenter Applied. thanks! Alex > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c > b/drivers/gpu/drm/amd/amdg

[patch] drm/amd/powerplay: precedence bug in init_non_clock_fields()

2016-01-04 Thread Alex Deucher
On Mon, Jan 4, 2016 at 3:44 PM, Dan Carpenter wrote: > The cast to uint8_t happens before the right shift so this always sets > .m3arb to zero. The cast is actually a no-op so we can remove it. > > Fixes: 3bace3591493 ('drm/amd/powerplay: add hardware manager sub-component') > Signed-off-by: Dan

drm/vc4: v3d: called object '0u' is not a function (next-20160104)

2016-01-04 Thread Stefan Wahren
Hi Eric, i tried to build Linux next-20160104, but vc4 failed with the following messages: ... CC drivers/gpu/drm/vc4/vc4_v3d.o drivers/gpu/drm/vc4/vc4_v3d.c: In function 'vc4_v3d_set_power': drivers/gpu/drm/vc4/vc4_v3d.c:157:29: error: called object '0u' is not a func

[4.2.y-ckt stable] Patch "drm: Use userspace compatible type in fourcc_mod_code macro" has been added to staging queue

2016-01-04 Thread Kamal Mostafa
This is a note to let you know that I have just added a patch titled drm: Use userspace compatible type in fourcc_mod_code macro to the linux-4.2.y-queue branch of the 4.2.y-ckt extended stable tree which can be found at: http://kernel.ubuntu.com/git/ubuntu/linux.git/log/?h=linux-4.2.y-

[PATCH v11 0/4] Allow USB devices to remain runtime-suspended when sleeping

2016-01-04 Thread Derek Basehore
On Mon, Nov 02, 2015 at 02:50:40AM +0100, Rafael J. Wysocki wrote: > > I've queued up this series for the second half of the v4.4 merge window. > > Thanks, > Rafael > > > ___ > linux-arm-kernel mailing list > linux-arm-kernel at lists.infradead.org >

<    1   2