diff options
author | Dave Airlie <airlied@linux.ie> | 2007-05-08 17:53:58 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-05-08 17:53:58 +1000 |
commit | 25c51f539f254937d116699e66f8c382d78e71d4 (patch) | |
tree | ae1b3545e56b230f76c9485e68ea5f15f959c444 /libdrm/xf86mm.h | |
parent | 6a62941ecaa7d2b8f14b30920856bfa52aee4775 (diff) |
drm/ttm: ioctl cleanup for buffer object - user side only
This just cleans up the xf86drm.c to what I want and drm.h,
I need to fix up the kernel internals to suit these changes now.
I've moved to using struct instead of typedefs for the bo and it doesn't look
that bad so I'll do the same thing for mm and fence..
Diffstat (limited to 'libdrm/xf86mm.h')
-rw-r--r-- | libdrm/xf86mm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdrm/xf86mm.h b/libdrm/xf86mm.h index bd0d2812..0b284cc0 100644 --- a/libdrm/xf86mm.h +++ b/libdrm/xf86mm.h @@ -125,7 +125,7 @@ typedef struct _drmBO{ typedef struct _drmBONode { drmMMListHead head; drmBO *buf; - drm_bo_arg_t bo_arg; + struct drm_bo_op_arg bo_arg; unsigned long arg0; unsigned long arg1; } drmBONode; |