From: Daniel Vetter Date: Wed, 10 Jul 2013 15:51:10 +0000 (+0200) Subject: drm: rip out dev->last_checked X-Git-Tag: upstream/snapshot3+hdmi~4265^2~168 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23367ff49065505e4a255dba2117f654ca26063f;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git drm: rip out dev->last_checked Only ever re-cleared in drm_setup, otherwise completely unused. Signed-off-by: Daniel Vetter Signed-off-by: Dave Airlie --- diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c index 57e3014..72acae9 100644 --- a/drivers/gpu/drm/drm_fops.c +++ b/drivers/gpu/drm/drm_fops.c @@ -77,7 +77,6 @@ static int drm_setup(struct drm_device * dev) dev->context_flag = 0; dev->last_context = 0; - dev->last_checked = 0; dev->if_version = 0; dev->buf_async = NULL; diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 1ea404f..dd03fd4 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1131,7 +1131,6 @@ struct drm_device { /*@{ */ int irq_enabled; /**< True if irq handler is enabled */ __volatile__ long context_flag; /**< Context swapping flag */ - int last_checked; /**< Last context checked for DMA */ int last_context; /**< Last current context */ /*@} */