From e0be428e6645f2891fab6be92d1b0e9aad972e7d Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 12 Jul 2007 10:26:44 +1000 Subject: drm: detypedef the hashtab and more of sman Signed-off-by: Dave Airlie --- drivers/char/drm/drmP.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'drivers/char/drm/drmP.h') diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index c24a25606c1..1277693e9ca 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h @@ -276,7 +276,7 @@ typedef struct drm_ioctl_desc { struct drm_magic_entry { struct list_head head; - drm_hash_item_t hash_item; + struct drm_hash_item hash_item; struct drm_file *priv; struct drm_magic_entry *next; }; @@ -481,7 +481,7 @@ struct drm_sigdata { */ struct drm_map_list { struct list_head head; /**< list head */ - drm_hash_item_t hash; + struct drm_hash_item hash; struct drm_map *map; /**< mapping */ unsigned int user_token; }; @@ -660,7 +660,7 @@ struct drm_device { /** \name Authentication */ /*@{ */ struct list_head filelist; - drm_open_hash_t magiclist; /**< magic hash table */ + struct drm_open_hash magiclist; /**< magic hash table */ struct list_head magicfree; /*@} */ @@ -668,7 +668,7 @@ struct drm_device { /*@{ */ struct list_head maplist; /**< Linked list of regions */ int map_count; /**< Number of mappable regions */ - drm_open_hash_t map_hash; /**< User token hash table for maps */ + struct drm_open_hash map_hash; /**< User token hash table for maps */ /** \name Context handle management */ /*@{ */ -- cgit v1.2.3