diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bo.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index 6a2592f7daae..4c950b4cf416 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c | |||
@@ -1472,19 +1472,19 @@ nouveau_bo_fence_ref(void *sync_obj) | |||
1472 | } | 1472 | } |
1473 | 1473 | ||
1474 | static bool | 1474 | static bool |
1475 | nouveau_bo_fence_signalled(void *sync_obj, void *sync_arg) | 1475 | nouveau_bo_fence_signalled(void *sync_obj) |
1476 | { | 1476 | { |
1477 | return nouveau_fence_done(sync_obj); | 1477 | return nouveau_fence_done(sync_obj); |
1478 | } | 1478 | } |
1479 | 1479 | ||
1480 | static int | 1480 | static int |
1481 | nouveau_bo_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr) | 1481 | nouveau_bo_fence_wait(void *sync_obj, bool lazy, bool intr) |
1482 | { | 1482 | { |
1483 | return nouveau_fence_wait(sync_obj, lazy, intr); | 1483 | return nouveau_fence_wait(sync_obj, lazy, intr); |
1484 | } | 1484 | } |
1485 | 1485 | ||
1486 | static int | 1486 | static int |
1487 | nouveau_bo_fence_flush(void *sync_obj, void *sync_arg) | 1487 | nouveau_bo_fence_flush(void *sync_obj) |
1488 | { | 1488 | { |
1489 | return 0; | 1489 | return 0; |
1490 | } | 1490 | } |