winsys/amdgpu: remove unused amdgpu_fence_is_syncobj

Unused since !24724.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27412>
This commit is contained in:
Pierre-Eric Pelloux-Prayer 2024-02-01 15:02:19 +01:00
parent f7facda322
commit ac426e1164

View file

@ -176,11 +176,6 @@ struct amdgpu_fence {
void amdgpu_fence_destroy(struct amdgpu_fence *fence);
static inline bool amdgpu_fence_is_syncobj(struct amdgpu_fence *fence)
{
return fence->ctx == NULL;
}
static inline void amdgpu_ctx_reference(struct amdgpu_ctx **dst, struct amdgpu_ctx *src)
{
struct amdgpu_ctx *old_dst = *dst;