diff options
author | Kevin E Martin <kem@kem.org> | 2001-03-07 19:14:39 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2001-03-07 19:14:39 +0000 |
commit | 7e820fc7d89d06a11f448d7093469a0c765a84a6 (patch) | |
tree | 0b0e71d032fedccb0ac40ddf7303cda2de53451a /linux/drmP.h | |
parent | 78b07aa0d7a25ffbc1a2c07737fcb7597c4e6694 (diff) |
- Prepare for merge with trunksarea-1-0-0-20010307-freeze
- Change variable names to be more consistent
- Fix bug in per-context creation routine
- Fix root-only permissions for get/setsareactx IOCTLs
- Back out incomplete gamma changes
- Fix some compilation warning messages
- Various code cleanups
- Disable per-context SAREA example code for Radeon This can be re-enabled
when it is actually used by the driver. Look for '#ifdef
PER_CONTEXT_SAREA' in the client-side and ddx Radeon driver.
Diffstat (limited to 'linux/drmP.h')
-rw-r--r-- | linux/drmP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drmP.h b/linux/drmP.h index 6f21c0ed..804df409 100644 --- a/linux/drmP.h +++ b/linux/drmP.h @@ -835,9 +835,9 @@ extern int DRM(notifier)(void *priv); /* Context Bitmap support (ctxbitmap.c) */ extern int DRM(ctxbitmap_init)( drm_device_t *dev ); extern void DRM(ctxbitmap_cleanup)( drm_device_t *dev ); -extern int DRM(add_ctx_map)( struct inode *inode, struct file *filp, +extern int DRM(setsareactx)( struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg ); -extern int DRM(get_ctx_map)( struct inode *inode, struct file *filp, +extern int DRM(getsareactx)( struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg ); /* Buffer management support (bufs.c) */ |