[PATCH] MAINTAINERS: remove undeliverable entries in RADEON and AMDGPU DRM DRIVERS

2025-02-25 Thread Mingcong Bai
k in early Februrary, but received no reply. To avoid warning emails from the future, remove Xinhui Pan from MAINTAINERS and add Hamza Mahfooz to .get_maintainer.ignore. Suggested-by: Kexy Biscuit Signed-off-by: Mingcong Bai --- .get_maintainer.ignore | 1 + MAINTAINERS| 1 - 2 files

Please Apply: Revert "drm/amd/display: Fix green screen issue after suspend"

2025-02-09 Thread Mingcong Bai
intainers may have a better idea on this). Reported-By: Yang Wu Tested-by: Yang Wu Suggested-by: Mingcong Bai

Re: [PATCH] Revert "drm/radeon: use GEM references instead of TTMs"

2024-10-01 Thread Mingcong Bai
&bo->tbo.base); + ttm_bo_get(&bo->tbo); return bo; } void radeon_bo_unref(struct radeon_bo **bo) { + struct ttm_buffer_object *tbo; + if ((*bo) == NULL) return; - drm_gem_object_put(&(*bo)->tbo.base); + tbo = &((*bo)->tbo); + ttm_bo_put(tbo); *bo = NULL; } Best Regards, Mingcong Bai