diff options
author | Dave Airlie <airlied@linux.ie> | 2007-01-08 21:31:13 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-02-08 13:24:26 +1100 |
commit | b9094d3aaa9550e740b6fd12b68f485d9979ce27 (patch) | |
tree | 6785813186e909ff9e78dfbf17138c50547b34a9 /drivers/char/drm/i830_drv.h | |
parent | f239b7b0cac0682d582949087710a9663b1300d5 (diff) |
i810/i830: use drm_core_ioremap instead of drm_ioremap
This makes the i810/i830 use the drm_core_ioremap functions.
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/i830_drv.h')
-rw-r--r-- | drivers/char/drm/i830_drv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/drm/i830_drv.h b/drivers/char/drm/i830_drv.h index 85bc5be6f91..e91f94afb4b 100644 --- a/drivers/char/drm/i830_drv.h +++ b/drivers/char/drm/i830_drv.h @@ -68,6 +68,7 @@ typedef struct drm_i830_buf_priv { int currently_mapped; void __user *virtual; void *kernel_virtual; + drm_local_map_t map; } drm_i830_buf_priv_t; typedef struct _drm_i830_ring_buffer { @@ -79,6 +80,7 @@ typedef struct _drm_i830_ring_buffer { int head; int tail; int space; + drm_local_map_t map; } drm_i830_ring_buffer_t; typedef struct drm_i830_private { |