diff options
author | Maarten Lankhorst <maarten.lankhorst@canonical.com> | 2012-10-12 11:04:00 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-11-20 01:10:10 -0500 |
commit | dedfdffd448aea2543b59fd504b92b8212ab3b7d (patch) | |
tree | 0a564865acb120e412e5718742ca7a6a481de98a /include/drm/ttm | |
parent | b03640b1de2eb349c2453d060d0bd0b0486e29b8 (diff) |
drm/ttm: remove sync_arg from driver functions
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Reviewed-By: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/ttm')
-rw-r--r-- | include/drm/ttm/ttm_bo_driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h index fc5fad09dae4..4789beee3b77 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h | |||
@@ -422,10 +422,10 @@ struct ttm_bo_driver { | |||
422 | * documentation. | 422 | * documentation. |
423 | */ | 423 | */ |
424 | 424 | ||
425 | bool (*sync_obj_signaled) (void *sync_obj, void *sync_arg); | 425 | bool (*sync_obj_signaled) (void *sync_obj); |
426 | int (*sync_obj_wait) (void *sync_obj, void *sync_arg, | 426 | int (*sync_obj_wait) (void *sync_obj, |
427 | bool lazy, bool interruptible); | 427 | bool lazy, bool interruptible); |
428 | int (*sync_obj_flush) (void *sync_obj, void *sync_arg); | 428 | int (*sync_obj_flush) (void *sync_obj); |
429 | void (*sync_obj_unref) (void **sync_obj); | 429 | void (*sync_obj_unref) (void **sync_obj); |
430 | void *(*sync_obj_ref) (void *sync_obj); | 430 | void *(*sync_obj_ref) (void *sync_obj); |
431 | 431 | ||