diff options
author | Eric Anholt <eric@anholt.net> | 2007-09-02 22:06:45 -0400 |
---|---|---|
committer | Dave Airlie <airlied@optimus.(none)> | 2007-10-14 20:38:20 -0400 |
commit | c153f45f9b7e30289157bba3ff5682291df16caa (patch) | |
tree | 33f21e1ebd83ec548751f3d490afe6230ab99972 /drivers/char/drm/radeon_drv.h | |
parent | b589ee5943a9610ebaea6e4e3433f2ae4d812b0b (diff) |
drm: Replace DRM_IOCTL_ARGS with (dev, data, file_priv) and remove DRM_DEVICE.
The data is now in kernel space, copied in/out as appropriate according to t
This results in DRM_COPY_{TO,FROM}_USER going away, and error paths to deal
with those failures. This also means that XFree86 4.2.0 support for i810 DR
is lost.
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/radeon_drv.h')
-rw-r--r-- | drivers/char/drm/radeon_drv.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/char/drm/radeon_drv.h b/drivers/char/drm/radeon_drv.h index 160c02785b5d..e4077bc212b3 100644 --- a/drivers/char/drm/radeon_drv.h +++ b/drivers/char/drm/radeon_drv.h | |||
@@ -307,7 +307,7 @@ typedef struct drm_radeon_kcmd_buffer { | |||
307 | } drm_radeon_kcmd_buffer_t; | 307 | } drm_radeon_kcmd_buffer_t; |
308 | 308 | ||
309 | extern int radeon_no_wb; | 309 | extern int radeon_no_wb; |
310 | extern drm_ioctl_desc_t radeon_ioctls[]; | 310 | extern struct drm_ioctl_desc radeon_ioctls[]; |
311 | extern int radeon_max_ioctl; | 311 | extern int radeon_max_ioctl; |
312 | 312 | ||
313 | /* Check whether the given hardware address is inside the framebuffer or the | 313 | /* Check whether the given hardware address is inside the framebuffer or the |
@@ -326,15 +326,15 @@ static __inline__ int radeon_check_offset(drm_radeon_private_t *dev_priv, | |||
326 | } | 326 | } |
327 | 327 | ||
328 | /* radeon_cp.c */ | 328 | /* radeon_cp.c */ |
329 | extern int radeon_cp_init(DRM_IOCTL_ARGS); | 329 | extern int radeon_cp_init(struct drm_device *dev, void *data, struct drm_file *file_priv); |
330 | extern int radeon_cp_start(DRM_IOCTL_ARGS); | 330 | extern int radeon_cp_start(struct drm_device *dev, void *data, struct drm_file *file_priv); |
331 | extern int radeon_cp_stop(DRM_IOCTL_ARGS); | 331 | extern int radeon_cp_stop(struct drm_device *dev, void *data, struct drm_file *file_priv); |
332 | extern int radeon_cp_reset(DRM_IOCTL_ARGS); | 332 | extern int radeon_cp_reset(struct drm_device *dev, void *data, struct drm_file *file_priv); |
333 | extern int radeon_cp_idle(DRM_IOCTL_ARGS); | 333 | extern int radeon_cp_idle(struct drm_device *dev, void *data, struct drm_file *file_priv); |
334 | extern int radeon_cp_resume(DRM_IOCTL_ARGS); | 334 | extern int radeon_cp_resume(struct drm_device *dev, void *data, struct drm_file *file_priv); |
335 | extern int radeon_engine_reset(DRM_IOCTL_ARGS); | 335 | extern int radeon_engine_reset(struct drm_device *dev, void *data, struct drm_file *file_priv); |
336 | extern int radeon_fullscreen(DRM_IOCTL_ARGS); | 336 | extern int radeon_fullscreen(struct drm_device *dev, void *data, struct drm_file *file_priv); |
337 | extern int radeon_cp_buffers(DRM_IOCTL_ARGS); | 337 | extern int radeon_cp_buffers(struct drm_device *dev, void *data, struct drm_file *file_priv); |
338 | 338 | ||
339 | extern void radeon_freelist_reset(struct drm_device * dev); | 339 | extern void radeon_freelist_reset(struct drm_device * dev); |
340 | extern struct drm_buf *radeon_freelist_get(struct drm_device * dev); | 340 | extern struct drm_buf *radeon_freelist_get(struct drm_device * dev); |
@@ -347,16 +347,16 @@ extern int radeon_driver_preinit(struct drm_device *dev, unsigned long flags); | |||
347 | extern int radeon_presetup(struct drm_device *dev); | 347 | extern int radeon_presetup(struct drm_device *dev); |
348 | extern int radeon_driver_postcleanup(struct drm_device *dev); | 348 | extern int radeon_driver_postcleanup(struct drm_device *dev); |
349 | 349 | ||
350 | extern int radeon_mem_alloc(DRM_IOCTL_ARGS); | 350 | extern int radeon_mem_alloc(struct drm_device *dev, void *data, struct drm_file *file_priv); |
351 | extern int radeon_mem_free(DRM_IOCTL_ARGS); | 351 | extern int radeon_mem_free(struct drm_device *dev, void *data, struct drm_file *file_priv); |
352 | extern int radeon_mem_init_heap(DRM_IOCTL_ARGS); | 352 | extern int radeon_mem_init_heap(struct drm_device *dev, void *data, struct drm_file *file_priv); |
353 | extern void radeon_mem_takedown(struct mem_block **heap); | 353 | extern void radeon_mem_takedown(struct mem_block **heap); |
354 | extern void radeon_mem_release(struct drm_file *file_priv, | 354 | extern void radeon_mem_release(struct drm_file *file_priv, |
355 | struct mem_block *heap); | 355 | struct mem_block *heap); |
356 | 356 | ||
357 | /* radeon_irq.c */ | 357 | /* radeon_irq.c */ |
358 | extern int radeon_irq_emit(DRM_IOCTL_ARGS); | 358 | extern int radeon_irq_emit(struct drm_device *dev, void *data, struct drm_file *file_priv); |
359 | extern int radeon_irq_wait(DRM_IOCTL_ARGS); | 359 | extern int radeon_irq_wait(struct drm_device *dev, void *data, struct drm_file *file_priv); |
360 | 360 | ||
361 | extern void radeon_do_release(struct drm_device * dev); | 361 | extern void radeon_do_release(struct drm_device * dev); |
362 | extern int radeon_driver_vblank_wait(struct drm_device * dev, | 362 | extern int radeon_driver_vblank_wait(struct drm_device * dev, |