Skip to content

Commit 7645bb4

Browse files
committed
hv: dxgkrnl: Port to new dma_fence API
Signed-off-by: Mitchell Levy <levymitchell0@gmail.com>
1 parent cfd1dd6 commit 7645bb4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/hv/dxgkrnl/dxgsyncfile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,8 @@ static bool dxgdmafence_signaled(struct dma_fence *fence)
446446
syncpoint = to_syncpoint(fence);
447447
if (syncpoint == 0)
448448
return true;
449-
return __dma_fence_is_later(syncpoint->fence_value, fence->seqno,
450-
fence->ops);
449+
return __dma_fence_is_later(fence, syncpoint->fence_value,
450+
fence->seqno);
451451
}
452452

453453
static bool dxgdmafence_enable_signaling(struct dma_fence *fence)

0 commit comments

Comments
 (0)