Commit 5a6b088f authored by Lespiau, Damien's avatar Lespiau, Damien Committed by Dave Airlie

drm: Remove unused variable in drm_global_item_ref()

Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 618e3776
...@@ -67,7 +67,6 @@ int drm_global_item_ref(struct drm_global_reference *ref) ...@@ -67,7 +67,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
{ {
int ret; int ret;
struct drm_global_item *item = &glob[ref->global_type]; struct drm_global_item *item = &glob[ref->global_type];
void *object;
mutex_lock(&item->mutex); mutex_lock(&item->mutex);
if (item->refcount == 0) { if (item->refcount == 0) {
...@@ -85,7 +84,6 @@ int drm_global_item_ref(struct drm_global_reference *ref) ...@@ -85,7 +84,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
} }
++item->refcount; ++item->refcount;
ref->object = item->object; ref->object = item->object;
object = item->object;
mutex_unlock(&item->mutex); mutex_unlock(&item->mutex);
return 0; return 0;
out_err: out_err:
......
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