diff mbox

[1/5] drm: Remove unused variable in drm_global_item_ref()

Message ID 1380381845-21797-1-git-send-email-damien.lespiau@intel.com (mailing list archive)
State Accepted
Headers show

Commit Message

Lespiau, Damien Sept. 28, 2013, 3:24 p.m. UTC
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
 drivers/gpu/drm/drm_global.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Alex Deucher Sept. 28, 2013, 5:47 p.m. UTC | #1
On Sat, Sep 28, 2013 at 11:24 AM, Damien Lespiau
<damien.lespiau@intel.com> wrote:
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>

For the series:

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  drivers/gpu/drm/drm_global.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_global.c b/drivers/gpu/drm/drm_global.c
> index f731116..3d2e91c 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:
> --
> 1.8.3.1
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
diff mbox

Patch

diff --git a/drivers/gpu/drm/drm_global.c b/drivers/gpu/drm/drm_global.c
index f731116..3d2e91c 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: