From: Ville Syrjälä <ville.syrjala@linux.intel.com> Date: Fri, 4 Oct 2013 11:53:38 +0000 (+0300) Subject: drm: Kill unused stuff from struct drm_device X-Git-Tag: firefly_0821_release~176^2~4694^2~174 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6b8837df7a39d88f6a48a892312b08bbefba2540;p=firefly-linux-kernel-4.4.55.git drm: Kill unused stuff from struct drm_device 'map_count' and 'work' are never used. Kill them both. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com> --- diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 713d7c699bcd..5b99c0e072ef 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1127,7 +1127,6 @@ struct drm_device { /** \name Memory management */ /*@{ */ struct list_head maplist; /**< Linked list of regions */ - int map_count; /**< Number of mappable regions */ struct drm_open_hash map_hash; /**< User token hash table for maps */ /** \name Context handle management */ @@ -1154,7 +1153,6 @@ struct drm_device { int last_context; /**< Last current context */ /*@} */ - struct work_struct work; /** \name VBLANK IRQ support */ /*@{ */