[PATCH] drm/amd/display: Increase frame-larger-than warning limit for DCN401

2024-12-30 Thread Palmer Dabbelt
From: Palmer Dabbelt Without this I get CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/resource/dcn401/dcn401_resource.o drivers/gpu/drm/amd/amdgpu/../display/dc/resource/dcn401/dcn401_resource.c: In function ‘dcn401_dpp_create’: drivers/gpu/drm/amd/amdgpu/../display/dc/resource/dcn401

Re: [PATCH] drm/amd/display: Increase frame-larger-than warning limit

2024-06-04 Thread Palmer Dabbelt
On Mon, 03 Jun 2024 15:29:48 PDT (-0700), nat...@kernel.org wrote: Hi Palmer, On Thu, May 30, 2024 at 07:57:42AM -0700, Palmer Dabbelt wrote: From: Palmer Dabbelt I get a handful of build errors along the lines of linux/drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn32

[PATCH] drm/amd/display: Increase frame-larger-than warning limit

2024-05-30 Thread Palmer Dabbelt
From: Palmer Dabbelt I get a handful of build errors along the lines of linux/drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn32/display_mode_vba_32.c:58:13: error: stack frame size (2352) exceeds limit (2048) in

[PATCH] drm: xlnx: zynqmp_disp: Fix WARN_ON build warning

2024-05-21 Thread Palmer Dabbelt
From: Palmer Dabbelt Without this I get warnings along the lines of drivers/gpu/drm/xlnx/zynqmp_disp.c:949:14: error: logical not is only applied to the left hand side of this comparison [-Werror,-Wlogical-not-parentheses] 949 | if (WARN_ON(!layer->m

Re: [PATCH 4/4] vgacon, arch/*: remove unused screen_info definitions

2023-07-12 Thread Palmer Dabbelt
.orig_video_cols = 80, - .orig_video_lines = 24, - .orig_video_isVGA = 1, - .orig_video_points = 16, -}; -#endif - #ifdef CONFIG_BLK_DEV_INITRD extern unsigned long initrd_start; extern unsigned long initrd_end; Acked-by: Palmer Dabbelt

Re: [PATCH 0/9] Add DRM driver for StarFive SoC JH7110

2023-06-22 Thread Palmer Dabbelt
0644 drivers/gpu/drm/verisilicon/vs_type.h create mode 100644 include/uapi/drm/vs_drm.h This popped up in the RISC-V patchwork, so Acked-by: Palmer Dabbelt # RISC-V in case anyone was looking for one -- I definately don't know anything about DRM, though, so not sure that means much...

[PATCH] phy: mediatek: Remove unusued ret and check

2023-05-04 Thread Palmer Dabbelt
From: Palmer Dabbelt This trips up a maybe-uninitialized warning, but it's actually just not used. Signed-off-by: Palmer Dabbelt --- I just stumbled into this one when trying to test Linus' master. I'm not sure it's a sane fix, but I'm not using the driver. No rush

Re: [PATCH 13/19] arch/riscv: rename internal name __xchg to __arch_xchg

2023-02-14 Thread Palmer Dabbelt
ptr)) _x_ = (x); \ - (__typeof__(*(ptr))) __xchg((ptr), _x_, sizeof(*(ptr)));\ + (__typeof__(*(ptr))) __arch_xchg((ptr), _x_, sizeof(*(ptr))); \ }) #define xchg32(ptr, x) \ Acked-by: Palmer Dabbelt

Re: [PATCH 13/19] arch/riscv: rename internal name __xchg to __arch_xchg

2022-12-29 Thread Palmer Dabbelt
ptr)) _x_ = (x); \ - (__typeof__(*(ptr))) __xchg((ptr), _x_, sizeof(*(ptr)));\ + (__typeof__(*(ptr))) __arch_xchg((ptr), _x_, sizeof(*(ptr))); \ }) #define xchg32(ptr, x) \ Acked-by: Palmer Dabbelt Thanks!

[PATCH] MAINTAINERS: git://github -> https://github.com for patjak

2022-10-13 Thread Palmer Dabbelt
Github deprecated the git:// links about a year ago, so let's move to the https:// URLs instead. Reported-by: Conor Dooley Link: https://github.blog/2021-09-01-improving-git-protocol-security-github/ Signed-off-by: Palmer Dabbelt --- I've split these up by github username so folks can

[PATCH] drm/amd/display: fix another array-bounds error in dc_stream_remove_writeback()

2022-10-09 Thread Palmer Dabbelt
From: Palmer Dabbelt Without this I get some warnings. I get the following with GCC 11: drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stream.c: In function ‘dc_stream_remove_writeback’: drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stream.c:527:83: warning: array subscript 1 is above

Re: [PATCH v5 00/13] Canaan devicetree fixes

2022-08-10 Thread Palmer Dabbelt
On Fri, 05 Aug 2022 10:51:00 PDT (-0700), conor.doo...@microchip.com wrote: On 14/07/2022 23:11, Conor Dooley - M52691 wrote: On 14/07/2022 23:04, Palmer Dabbelt wrote: I'm trying to sort out how to merge this one.  I'm not opposed to taking it through the RISC-V tree as Rob's

Re: [PATCH v5 00/13] Canaan devicetree fixes

2022-07-15 Thread Palmer Dabbelt
On Tue, 05 Jul 2022 14:52:01 PDT (-0700), m...@conchuod.ie wrote: From: Conor Dooley Hey all, This series should rid us of dtbs_check errors for the RISC-V Canaan k210 based boards. To make keeping it that way a little easier, I changed the Canaan devicetree Makefile so that it would build all

Re: [PATCH v2] drm/rockchip: cdn-dp-core: Fix cdn_dp_resume unused warning

2021-09-21 Thread Palmer Dabbelt
On Tue, 21 Sep 2021 02:12:17 PDT (-0700), he...@sntech.de wrote: On Fri, 10 Sep 2021 20:43:18 -0700, Palmer Dabbelt wrote: cdn_dp_resume is only used under PM_SLEEP, and now that it's static an unused function warning is triggered undner !PM_SLEEP. This marks the function as possibly u

[PATCH v2] drm/rockchip: cdn-dp-core: Fix cdn_dp_resume unused warning

2021-09-10 Thread Palmer Dabbelt
From: Palmer Dabbelt cdn_dp_resume is only used under PM_SLEEP, and now that it's static an unused function warning is triggered undner !PM_SLEEP. This marks the function as possibly unused, to avoid triggering compiler warnings. Fixes: 7c49abb4c2f8 ("drm/rockchip: cdn-dp-

[PATCH RESEND] drm/rockchip: cdn-dp-core: Fix cdn_dp_resume unused warning

2021-09-06 Thread Palmer Dabbelt
From: Palmer Dabbelt cdn_dp_resume is only used under PM_SLEEP, and now that it's static an unused function warning is triggered undner !PM_SLEEP. This conditionally enables the function to avoid the warning. Fixes: 7c49abb4c2f8 ("drm/rockchip: cdn-dp-core: Make cdn_dp_core_susp

[PATCH] drm/rockchip: cdn-dp-core: Fix cdn_dp_resume unused warning

2021-01-15 Thread Palmer Dabbelt
From: Palmer Dabbelt cdn_dp_resume is only used under PM_SLEEP, and now that it's static an unused function warning is triggered undner !PM_SLEEP. This conditionally enables the function to avoid the warning. Fixes: 7c49abb4c2f8 ("drm/rockchip: cdn-dp-core: Make cdn_dp_core_susp