diff options
author | Lespiau, Damien <damien.lespiau@intel.com> | 2013-09-28 11:24:01 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-10-01 01:28:58 -0400 |
commit | 5a6b088fd358c89a97ae8ab5ddf6f5232f6642b5 (patch) | |
tree | ae407b97c5be5b2897603c7230bdb58f8e7278de | |
parent | 618e377608c046a696ad78fb3015db0c17719f3a (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>
-rw-r--r-- | drivers/gpu/drm/drm_global.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_global.c b/drivers/gpu/drm/drm_global.c index f7311162a61d..3d2e91c4d78e 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) | |||
67 | { | 67 | { |
68 | int ret; | 68 | int ret; |
69 | struct drm_global_item *item = &glob[ref->global_type]; | 69 | struct drm_global_item *item = &glob[ref->global_type]; |
70 | void *object; | ||
71 | 70 | ||
72 | mutex_lock(&item->mutex); | 71 | mutex_lock(&item->mutex); |
73 | if (item->refcount == 0) { | 72 | if (item->refcount == 0) { |
@@ -85,7 +84,6 @@ int drm_global_item_ref(struct drm_global_reference *ref) | |||
85 | } | 84 | } |
86 | ++item->refcount; | 85 | ++item->refcount; |
87 | ref->object = item->object; | 86 | ref->object = item->object; |
88 | object = item->object; | ||
89 | mutex_unlock(&item->mutex); | 87 | mutex_unlock(&item->mutex); |
90 | return 0; | 88 | return 0; |
91 | out_err: | 89 | out_err: |