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/drm_sman.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/drm_sman.h')
-rw-r--r-- | drivers/char/drm/drm_sman.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/drm/drm_sman.h b/drivers/char/drm/drm_sman.h index 2fef3b2bb613..39a39fefeef1 100644 --- a/drivers/char/drm/drm_sman.h +++ b/drivers/char/drm/drm_sman.h | |||
@@ -78,7 +78,7 @@ struct drm_sman_mm { | |||
78 | 78 | ||
79 | struct drm_memblock_item { | 79 | struct drm_memblock_item { |
80 | struct list_head owner_list; | 80 | struct list_head owner_list; |
81 | drm_hash_item_t user_hash; | 81 | struct drm_hash_item user_hash; |
82 | void *mm_info; | 82 | void *mm_info; |
83 | struct drm_sman_mm *mm; | 83 | struct drm_sman_mm *mm; |
84 | struct drm_sman *sman; | 84 | struct drm_sman *sman; |
@@ -87,8 +87,8 @@ struct drm_memblock_item { | |||
87 | struct drm_sman { | 87 | struct drm_sman { |
88 | struct drm_sman_mm *mm; | 88 | struct drm_sman_mm *mm; |
89 | int num_managers; | 89 | int num_managers; |
90 | drm_open_hash_t owner_hash_tab; | 90 | struct drm_open_hash owner_hash_tab; |
91 | drm_open_hash_t user_hash_tab; | 91 | struct drm_open_hash user_hash_tab; |
92 | struct list_head owner_items; | 92 | struct list_head owner_items; |
93 | }; | 93 | }; |
94 | 94 | ||