diff options
author | rnoland <rnoland@FreeBSD.org> | 2009-02-27 06:01:42 +0000 |
---|---|---|
committer | rnoland <rnoland@FreeBSD.org> | 2009-02-27 06:01:42 +0000 |
commit | 01cc5b6616afb7ff0d494ccddc3dc721ad54ef68 (patch) | |
tree | 5982a52b99c756bbe8a1d659eeaf2dfea5bdc1fa /sys/dev/drm/drmP.h | |
parent | 56525f0f8e34b88fbd99b36293d7d50e4925c846 (diff) | |
download | FreeBSD-src-01cc5b6616afb7ff0d494ccddc3dc721ad54ef68.zip FreeBSD-src-01cc5b6616afb7ff0d494ccddc3dc721ad54ef68.tar.gz |
Fix up some ioctl permissions issues long overlooked.
Submitted by: jkim@
MFC after: 2 weeks
Diffstat (limited to 'sys/dev/drm/drmP.h')
-rw-r--r-- | sys/dev/drm/drmP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/drm/drmP.h b/sys/dev/drm/drmP.h index 282d5ee..70ce917 100644 --- a/sys/dev/drm/drmP.h +++ b/sys/dev/drm/drmP.h @@ -901,8 +901,8 @@ int drm_addmap_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv); int drm_rmmap_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv); -int drm_addbufs_ioctl(struct drm_device *dev, void *data, - struct drm_file *file_priv); +int drm_addbufs(struct drm_device *dev, void *data, + struct drm_file *file_priv); int drm_infobufs(struct drm_device *dev, void *data, struct drm_file *file_priv); int drm_markbufs(struct drm_device *dev, void *data, |