diff options
author | Dave Airlie <airlied@linux.ie> | 2007-07-11 20:26:44 -0400 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-07-11 20:26:44 -0400 |
commit | e0be428e6645f2891fab6be92d1b0e9aad972e7d (patch) | |
tree | cf071bb45d7f043da0ed28bde707daa3a6dce4f5 /drivers/char/drm/drmP.h | |
parent | 9698b4dba42eb758ad98012c21e5fbdb372fe2d9 (diff) |
drm: detypedef the hashtab and more of sman
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/drmP.h')
-rw-r--r-- | drivers/char/drm/drmP.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index c24a25606c18..1277693e9ca4 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h | |||
@@ -276,7 +276,7 @@ typedef struct drm_ioctl_desc { | |||
276 | 276 | ||
277 | struct drm_magic_entry { | 277 | struct drm_magic_entry { |
278 | struct list_head head; | 278 | struct list_head head; |
279 | drm_hash_item_t hash_item; | 279 | struct drm_hash_item hash_item; |
280 | struct drm_file *priv; | 280 | struct drm_file *priv; |
281 | struct drm_magic_entry *next; | 281 | struct drm_magic_entry *next; |
282 | }; | 282 | }; |
@@ -481,7 +481,7 @@ struct drm_sigdata { | |||
481 | */ | 481 | */ |
482 | struct drm_map_list { | 482 | struct drm_map_list { |
483 | struct list_head head; /**< list head */ | 483 | struct list_head head; /**< list head */ |
484 | drm_hash_item_t hash; | 484 | struct drm_hash_item hash; |
485 | struct drm_map *map; /**< mapping */ | 485 | struct drm_map *map; /**< mapping */ |
486 | unsigned int user_token; | 486 | unsigned int user_token; |
487 | }; | 487 | }; |
@@ -660,7 +660,7 @@ struct drm_device { | |||
660 | /** \name Authentication */ | 660 | /** \name Authentication */ |
661 | /*@{ */ | 661 | /*@{ */ |
662 | struct list_head filelist; | 662 | struct list_head filelist; |
663 | drm_open_hash_t magiclist; /**< magic hash table */ | 663 | struct drm_open_hash magiclist; /**< magic hash table */ |
664 | struct list_head magicfree; | 664 | struct list_head magicfree; |
665 | /*@} */ | 665 | /*@} */ |
666 | 666 | ||
@@ -668,7 +668,7 @@ struct drm_device { | |||
668 | /*@{ */ | 668 | /*@{ */ |
669 | struct list_head maplist; /**< Linked list of regions */ | 669 | struct list_head maplist; /**< Linked list of regions */ |
670 | int map_count; /**< Number of mappable regions */ | 670 | int map_count; /**< Number of mappable regions */ |
671 | drm_open_hash_t map_hash; /**< User token hash table for maps */ | 671 | struct drm_open_hash map_hash; /**< User token hash table for maps */ |
672 | 672 | ||
673 | /** \name Context handle management */ | 673 | /** \name Context handle management */ |
674 | /*@{ */ | 674 | /*@{ */ |