aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChunming Zhou <[email protected]>2018-08-30 14:48:27 +0800
committerChristian König <[email protected]>2018-09-06 11:08:53 +0200
commit94e4c5305a9b5a939bfba08039c1b383af7e453b (patch)
treeb8e31c2600e66a645f1819375172231dd4923e8d
parent70109354fed232dfce8fb2c7cadf635acbe03e19 (diff)
drm: fix syncobj null_fence_enable_signaling
That is certainly totally nonsense. dma_fence_enable_sw_signaling() is the function who is calling this callback. Signed-off-by: Chunming Zhou <[email protected]> Cc: Jason Ekstrand <[email protected]> Reviewed-by: Christian König <[email protected]> Acked-by: Daniel Vetter <[email protected]> Signed-off-by: Christian König <[email protected]> Link: https://patchwork.freedesktop.org/patch/246535/
-rw-r--r--drivers/gpu/drm/drm_syncobj.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_syncobj.c b/drivers/gpu/drm/drm_syncobj.c
index 3a8837c49639..d17ed75ac7e2 100644
--- a/drivers/gpu/drm/drm_syncobj.c
+++ b/drivers/gpu/drm/drm_syncobj.c
@@ -184,7 +184,6 @@ static const char *drm_syncobj_null_fence_get_name(struct dma_fence *fence)
static bool drm_syncobj_null_fence_enable_signaling(struct dma_fence *fence)
{
- dma_fence_enable_sw_signaling(fence);
return !dma_fence_is_signaled(fence);
}