Re: [PATCH] vboxvideo: Fix incorrect type in assignment sparse warning

2018-01-06 Thread Hans de Goede
Hi, On 06-01-18 20:56, Alexander Kapshuk wrote: On Sat, Jan 6, 2018 at 9:43 PM, Hans de Goede wrote: HI, On 06-01-18 20:30, Alexander Kapshuk wrote: On Sat, Jan 6, 2018 at 6:00 PM, Hans de Goede wrote: Hi, On 06-01-18 15:20, Alexander Kapshuk

Re: [PATCH] vboxvideo: Fix incorrect type in assignment sparse warning

2018-01-06 Thread Hans de Goede
HI, On 06-01-18 20:30, Alexander Kapshuk wrote: On Sat, Jan 6, 2018 at 6:00 PM, Hans de Goede wrote: Hi, On 06-01-18 15:20, Alexander Kapshuk wrote: On Mon, Dec 25, 2017 at 04:42:59PM +0200, Alexander Kapshuk wrote: Sparse emitted the following warning:

Re: [PATCH 4/5] drm/tinydrm/mi0283qt: Let the display pipe handle power

2018-01-06 Thread Noralf Trønnes
Den 06.01.2018 19.10, skrev David Lechner: On 01/06/2018 06:45 AM, Noralf Trønnes wrote: Den 05.01.2018 19.59, skrev David Lechner: On 01/05/2018 10:55 AM, Noralf Trønnes wrote: It's better to leave power handling and controller init to the modesetting machinery using the simple pipe

Re: [PATCH 4/5] drm/tinydrm/mi0283qt: Let the display pipe handle power

2018-01-06 Thread David Lechner
On 01/06/2018 06:45 AM, Noralf Trønnes wrote: Den 05.01.2018 19.59, skrev David Lechner: On 01/05/2018 10:55 AM, Noralf Trønnes wrote: It's better to leave power handling and controller init to the modesetting machinery using the simple pipe .enable and .disable callbacks. Signed-off-by:

Re: [PATCH 5/5] drm/tinydrm: Embed the mode in tinydrm_connector

2018-01-06 Thread David Lechner
On 01/06/2018 06:49 AM, Noralf Trønnes wrote: Den 05.01.2018 20.14, skrev David Lechner: On 01/05/2018 10:56 AM, Noralf Trønnes wrote: Embed the mode in tinydrm_connector instead of doing an devm_ allocation. Remove unnecessary use of ret variable at the end of tinydrm_display_pipe_init().

[PATCH] gpu: ipu-v3: make array 'int_reg' static, shrinks object size

2018-01-06 Thread Colin King
From: Colin Ian King Don't populate the const read-only array 'int_reg' on the stack but instead make it static. Makes the object code smaller by over 80 bytes: Before: textdata bss dec hex filename 280248936 192 371529120

Re: [PATCH] drm/nouveau/disp/gf119: add missing drive vfunc ptr

2018-01-06 Thread Rob Clark
On Sat, Jan 6, 2018 at 10:59 AM, Rob Clark wrote: > Fixes broken dp on GF119: > > Call Trace: >? nvkm_dp_train_drive+0x183/0x2c0 [nouveau] >nvkm_dp_acquire+0x4f3/0xcd0 [nouveau] >nv50_disp_super_2_2+0x5d/0x470 [nouveau] >? nvkm_devinit_pll_set+0xf/0x20

Re: [PATCH] vboxvideo: Fix incorrect type in assignment sparse warning

2018-01-06 Thread Hans de Goede
Hi, On 06-01-18 15:20, Alexander Kapshuk wrote: On Mon, Dec 25, 2017 at 04:42:59PM +0200, Alexander Kapshuk wrote: Sparse emitted the following warning: ../drivers/staging/vboxvideo/vbox_fb.c:173:27: warning: incorrect type in assignment (different address spaces)

[PATCH] drm/nouveau/disp/gf119: add missing drive vfunc ptr

2018-01-06 Thread Rob Clark
Fixes broken dp on GF119: Call Trace: ? nvkm_dp_train_drive+0x183/0x2c0 [nouveau] nvkm_dp_acquire+0x4f3/0xcd0 [nouveau] nv50_disp_super_2_2+0x5d/0x470 [nouveau] ? nvkm_devinit_pll_set+0xf/0x20 [nouveau] gf119_disp_super+0x19c/0x2f0 [nouveau] process_one_work+0x193/0x3c0

Re: [PATCH 5/5] drm/tinydrm: Embed the mode in tinydrm_connector

2018-01-06 Thread Noralf Trønnes
Den 05.01.2018 20.14, skrev David Lechner: On 01/05/2018 10:56 AM, Noralf Trønnes wrote: Embed the mode in tinydrm_connector instead of doing an devm_ allocation. Remove unnecessary use of ret variable at the end of tinydrm_display_pipe_init(). Signed-off-by: Noralf Trønnes

Re: [PATCH 4/5] drm/tinydrm/mi0283qt: Let the display pipe handle power

2018-01-06 Thread Noralf Trønnes
Den 05.01.2018 19.59, skrev David Lechner: On 01/05/2018 10:55 AM, Noralf Trønnes wrote: It's better to leave power handling and controller init to the modesetting machinery using the simple pipe .enable and .disable callbacks. Signed-off-by: Noralf Trønnes ---