aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/drm_global.c
diff options
context:
space:
mode:
authorLespiau, Damien <damien.lespiau@intel.com>2013-09-28 16:24:01 +0100
committerDave Airlie <airlied@redhat.com>2013-10-01 15:28:58 +1000
commit5a6b088fd358c89a97ae8ab5ddf6f5232f6642b5 (patch)
treeae407b97c5be5b2897603c7230bdb58f8e7278de /drivers/gpu/drm/drm_global.c
parent618e377608c046a696ad78fb3015db0c17719f3a (diff)
drm: Remove unused variable in drm_global_item_ref()
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_global.c')
-rw-r--r--drivers/gpu/drm/drm_global.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_global.c b/drivers/gpu/drm/drm_global.c
index f7311162a61..3d2e91c4d78 100644
--- a/drivers/gpu/drm/drm_global.c
+++ b/drivers/gpu/drm/drm_global.c
@@ -67,7 +67,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
{
int ret;
struct drm_global_item *item = &glob[ref->global_type];
- void *object;
mutex_lock(&item->mutex);
if (item->refcount == 0) {
@@ -85,7 +84,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
}
++item->refcount;
ref->object = item->object;
- object = item->object;
mutex_unlock(&item->mutex);
return 0;
out_err: