diff options
author | Dave Airlie <airlied@linux.ie> | 2007-07-11 16:21:47 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-07-11 16:21:47 +1000 |
commit | 8fc2fdf4c9437576f38e97c2f5b700ec77038984 (patch) | |
tree | d5770478cb93b8ecc0dfa09734887d474cae799b /drivers/char/drm/drmP.h | |
parent | 056219e2fa6664ec83bc258ebcf30f1a7919d423 (diff) |
drm: drop drm_vma_entry_t, drm_magic_entry_t
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/drmP.h')
-rw-r--r-- | drivers/char/drm/drmP.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h index 83d7d14a615..28895283700 100644 --- a/drivers/char/drm/drmP.h +++ b/drivers/char/drm/drmP.h @@ -274,22 +274,18 @@ typedef struct drm_ioctl_desc { int flags; } drm_ioctl_desc_t; -typedef struct drm_devstate { - pid_t owner; /**< X server pid holding x_lock */ -} drm_devstate_t; - -typedef struct drm_magic_entry { +struct drm_magic_entry { struct list_head head; drm_hash_item_t hash_item; struct drm_file *priv; struct drm_magic_entry *next; -} drm_magic_entry_t; +}; -typedef struct drm_vma_entry { +struct drm_vma_entry { struct list_head head; struct vm_area_struct *vma; pid_t pid; -} drm_vma_entry_t; +}; /** * DMA buffer. |