summaryrefslogtreecommitdiff
path: root/linux-core/drm_ttm.h
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-08-25 19:03:42 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-08-25 19:03:42 +0200
commit35c8ce6c2945ff09dc52dbc2a7382798ba64c1da (patch)
treebf33d46cef8df3f13f990d399b19df80befcf4c3 /linux-core/drm_ttm.h
parent1d3cf107d20cb11ad07667622785ef8341ab9c2a (diff)
ttm and buffer objects ioctl stubs.
Diffstat (limited to 'linux-core/drm_ttm.h')
-rw-r--r--linux-core/drm_ttm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-core/drm_ttm.h b/linux-core/drm_ttm.h
index ea9a8372..81006c3c 100644
--- a/linux-core/drm_ttm.h
+++ b/linux-core/drm_ttm.h
@@ -148,6 +148,8 @@ extern int drm_destroy_ttm(drm_ttm_t * ttm);
extern void drm_user_destroy_region(drm_ttm_backend_list_t * entry);
extern int drm_ttm_add_mm_to_list(drm_ttm_t * ttm, struct mm_struct *mm);
extern void drm_ttm_delete_mm(drm_ttm_t * ttm, struct mm_struct *mm);
+extern int drm_ttm_ioctl(drm_file_t *priv, int num_requests,
+ drm_ttm_arg_t __user *data);
#define DRM_MASK_VAL(dest, mask, val) \
(dest) = ((dest) & ~(mask)) | ((val) & (mask));