diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2002-07-15 20:21:18 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2002-07-15 20:21:18 +0000 |
commit | eef49a73b541d69be5da9b289deff36f5bb96ab0 (patch) | |
tree | 0cc0fa5559d7bf87c25d277ef63d816d0090ccf4 /bsd/drm_drawable.h | |
parent | deb296f395bb16ef7cf4bfe48f6e6c2cbacea0bc (diff) |
Merge trunk into r200-branchr200-0-1-20020715
Diffstat (limited to 'bsd/drm_drawable.h')
-rw-r--r-- | bsd/drm_drawable.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bsd/drm_drawable.h b/bsd/drm_drawable.h index f57d8628b..308410678 100644 --- a/bsd/drm_drawable.h +++ b/bsd/drm_drawable.h @@ -29,22 +29,21 @@ * Gareth Hughes <gareth@valinux.com> */ -#define __NO_VERSION__ #include "drmP.h" -int DRM(adddraw)( DRM_OS_IOCTL ) +int DRM(adddraw)( DRM_IOCTL_ARGS ) { drm_draw_t draw; draw.handle = 0; /* NOOP */ DRM_DEBUG("%d\n", draw.handle); - DRM_OS_KRNTOUSR( (drm_draw_t *)data, draw, sizeof(draw) ); + DRM_COPY_TO_USER_IOCTL( (drm_draw_t *)data, draw, sizeof(draw) ); return 0; } -int DRM(rmdraw)( DRM_OS_IOCTL ) +int DRM(rmdraw)( DRM_IOCTL_ARGS ) { return 0; /* NOOP */ } |