diff options
author | Leif Delgass <ldelgass@users.sourceforge.net> | 2003-04-08 01:30:43 +0000 |
---|---|---|
committer | Leif Delgass <ldelgass@users.sourceforge.net> | 2003-04-08 01:30:43 +0000 |
commit | 10444e06d4f4edaf8e8cd9370f450ce7c047efac (patch) | |
tree | 294d347bd34529e341a363bc093287b5b236c601 /linux/i810_dma.c | |
parent | 3f7769921bd414f489d4487a5760a8d814efd51d (diff) |
Use list_entry() to get container struct from struct list_head pointers.
Build fix for RedHat 9 kernel (5 args to remap_page_range()).
Diffstat (limited to 'linux/i810_dma.c')
-rw-r--r-- | linux/i810_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/i810_dma.c b/linux/i810_dma.c index de9345e3..b0a1b6aa 100644 --- a/linux/i810_dma.c +++ b/linux/i810_dma.c @@ -347,7 +347,7 @@ static int i810_dma_initialize(drm_device_t *dev, memset(dev_priv, 0, sizeof(drm_i810_private_t)); list_for_each(list, &dev->maplist->head) { - drm_map_list_t *r_list = (drm_map_list_t *)list; + drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head); if( r_list->map && r_list->map->type == _DRM_SHM && r_list->map->flags & _DRM_CONTAINS_LOCK ) { |