diff options
Diffstat (limited to 'drivers/char/drm/drmP.h')
-rw-r--r-- | drivers/char/drm/drmP.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index e9ede8d69e20..66814291949a 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h | |||
@@ -925,13 +925,17 @@ extern int drm_agp_enable_ioctl(struct inode *inode, struct file *filp, | |||
925 | extern int drm_agp_info(drm_device_t * dev, drm_agp_info_t * info); | 925 | extern int drm_agp_info(drm_device_t * dev, drm_agp_info_t * info); |
926 | extern int drm_agp_info_ioctl(struct inode *inode, struct file *filp, | 926 | extern int drm_agp_info_ioctl(struct inode *inode, struct file *filp, |
927 | unsigned int cmd, unsigned long arg); | 927 | unsigned int cmd, unsigned long arg); |
928 | extern int drm_agp_alloc(struct inode *inode, struct file *filp, | 928 | extern int drm_agp_alloc(drm_device_t *dev, drm_agp_buffer_t *request); |
929 | extern int drm_agp_alloc_ioctl(struct inode *inode, struct file *filp, | ||
929 | unsigned int cmd, unsigned long arg); | 930 | unsigned int cmd, unsigned long arg); |
930 | extern int drm_agp_free(struct inode *inode, struct file *filp, | 931 | extern int drm_agp_free(drm_device_t *dev, drm_agp_buffer_t *request); |
932 | extern int drm_agp_free_ioctl(struct inode *inode, struct file *filp, | ||
931 | unsigned int cmd, unsigned long arg); | 933 | unsigned int cmd, unsigned long arg); |
932 | extern int drm_agp_unbind(struct inode *inode, struct file *filp, | 934 | extern int drm_agp_unbind(drm_device_t *dev, drm_agp_binding_t *request); |
935 | extern int drm_agp_unbind_ioctl(struct inode *inode, struct file *filp, | ||
933 | unsigned int cmd, unsigned long arg); | 936 | unsigned int cmd, unsigned long arg); |
934 | extern int drm_agp_bind(struct inode *inode, struct file *filp, | 937 | extern int drm_agp_bind(drm_device_t *dev, drm_agp_binding_t *request); |
938 | extern int drm_agp_bind_ioctl(struct inode *inode, struct file *filp, | ||
935 | unsigned int cmd, unsigned long arg); | 939 | unsigned int cmd, unsigned long arg); |
936 | extern DRM_AGP_MEM *drm_agp_allocate_memory(struct agp_bridge_data *bridge, | 940 | extern DRM_AGP_MEM *drm_agp_allocate_memory(struct agp_bridge_data *bridge, |
937 | size_t pages, u32 type); | 941 | size_t pages, u32 type); |