Commit 23367ff4 authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm: rip out dev->last_checked

Only ever re-cleared in drm_setup, otherwise completely unused.
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarDave Airlie <airlied@gmail.com>
parent 1d8d29cf
...@@ -77,7 +77,6 @@ static int drm_setup(struct drm_device * dev) ...@@ -77,7 +77,6 @@ static int drm_setup(struct drm_device * dev)
dev->context_flag = 0; dev->context_flag = 0;
dev->last_context = 0; dev->last_context = 0;
dev->last_checked = 0;
dev->if_version = 0; dev->if_version = 0;
dev->buf_async = NULL; dev->buf_async = NULL;
......
...@@ -1131,7 +1131,6 @@ struct drm_device { ...@@ -1131,7 +1131,6 @@ struct drm_device {
/*@{ */ /*@{ */
int irq_enabled; /**< True if irq handler is enabled */ int irq_enabled; /**< True if irq handler is enabled */
__volatile__ long context_flag; /**< Context swapping flag */ __volatile__ long context_flag; /**< Context swapping flag */
int last_checked; /**< Last context checked for DMA */
int last_context; /**< Last current context */ int last_context; /**< Last current context */
/*@} */ /*@} */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment