Skip to content

Commit

Permalink
drm: fixup other drivers for typedef removals
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Airlie <airlied@linux.ie>
  • Loading branch information
Dave Airlie committed Jul 11, 2007
1 parent 84b1fd1 commit eddca55
Show file tree
Hide file tree
Showing 22 changed files with 296 additions and 296 deletions.
124 changes: 62 additions & 62 deletions drivers/char/drm/i810_dma.c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion drivers/char/drm/i810_drm.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ typedef struct _drm_i810_sarea {
unsigned int dirty;

unsigned int nbox;
drm_clip_rect_t boxes[I810_NR_SAREA_CLIPRECTS];
struct drm_clip_rect boxes[I810_NR_SAREA_CLIPRECTS];

/* Maintain an LRU of contiguous regions of texture space. If
* you think you own a region of texture memory, and it has an
Expand Down
16 changes: 8 additions & 8 deletions drivers/char/drm/i810_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ typedef struct _drm_i810_ring_buffer {
} drm_i810_ring_buffer_t;

typedef struct drm_i810_private {
drm_map_t *sarea_map;
drm_map_t *mmio_map;
struct drm_map *sarea_map;
struct drm_map *mmio_map;

drm_i810_sarea_t *sarea_priv;
drm_i810_ring_buffer_t ring;
Expand Down Expand Up @@ -115,15 +115,15 @@ typedef struct drm_i810_private {
} drm_i810_private_t;

/* i810_dma.c */
extern int i810_driver_dma_quiescent(drm_device_t * dev);
extern void i810_driver_reclaim_buffers_locked(drm_device_t * dev,
extern int i810_driver_dma_quiescent(struct drm_device * dev);
extern void i810_driver_reclaim_buffers_locked(struct drm_device * dev,
struct file *filp);
extern int i810_driver_load(struct drm_device *, unsigned long flags);
extern void i810_driver_lastclose(drm_device_t * dev);
extern void i810_driver_preclose(drm_device_t * dev, DRMFILE filp);
extern void i810_driver_reclaim_buffers_locked(drm_device_t * dev,
extern void i810_driver_lastclose(struct drm_device * dev);
extern void i810_driver_preclose(struct drm_device * dev, DRMFILE filp);
extern void i810_driver_reclaim_buffers_locked(struct drm_device * dev,
struct file *filp);
extern int i810_driver_device_is_agp(drm_device_t * dev);
extern int i810_driver_device_is_agp(struct drm_device * dev);

extern drm_ioctl_desc_t i810_ioctls[];
extern int i810_max_ioctl;
Expand Down
Loading

0 comments on commit eddca55

Please sign in to comment.