Re: [PATCH] drm/amd/display: fix missing .is_two_pixels_per_container

2025-03-11 Thread Alex Deucher
Applied. Thanks! On Thu, Mar 6, 2025 at 9:13 AM Aliaksei Urbanski wrote: > > Starting from 6.11, AMDGPU driver, while being loaded with amdgpu.dc=1, > due to lack of .is_two_pixels_per_container function in dce60_tg_funcs, > causes a NULL pointer dereference on PCs with old GPUs, such as R9 280X

[PATCH] drm/amd/display: fix missing .is_two_pixels_per_container

2025-03-06 Thread Aliaksei Urbanski
Starting from 6.11, AMDGPU driver, while being loaded with amdgpu.dc=1, due to lack of .is_two_pixels_per_container function in dce60_tg_funcs, causes a NULL pointer dereference on PCs with old GPUs, such as R9 280X. So this fix adds missing .is_two_pixels_per_container to dce60_tg_funcs. Reporte