diff options
author | Dave Airlie <airlied@starflyer.(none)> | 2005-07-10 15:38:56 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2005-07-10 15:38:56 +1000 |
commit | 9c8da5ebbf6f87293cf8555182da271449889a69 (patch) | |
tree | c036835be2ec09249f960518ff2703316257d815 /drivers/char/drm/i915_drv.h | |
parent | d59431bf96d1e8a3d6d240343f559f5e2ace7f1d (diff) | |
download | op-kernel-dev-9c8da5ebbf6f87293cf8555182da271449889a69.zip op-kernel-dev-9c8da5ebbf6f87293cf8555182da271449889a69.tar.gz |
drm: update support for drm pci buffers
The DRM needs to change the drm_pci interface for FreeBSD compatiblity,
this patch introduces the drm_dma_handle_t and uses it in the Linux code.
From: Tonnerre Lombard, Eric Anholt, and Sergey Vlasov
Signed-off-by: David Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/i915_drv.h')
-rw-r--r-- | drivers/char/drm/i915_drv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/drm/i915_drv.h b/drivers/char/drm/i915_drv.h index 9c37d23..9308086 100644 --- a/drivers/char/drm/i915_drv.h +++ b/drivers/char/drm/i915_drv.h @@ -79,9 +79,10 @@ typedef struct drm_i915_private { drm_i915_sarea_t *sarea_priv; drm_i915_ring_buffer_t ring; + drm_dma_handle_t *status_page_dmah; void *hw_status_page; - unsigned long counter; dma_addr_t dma_status_page; + unsigned long counter; int back_offset; int front_offset; |