drm/amd/amdgpu : Remove unused variable
authorMuhammad Falak R Wani <falakreyaz@gmail.com>
Tue, 17 May 2016 09:42:43 +0000 (15:12 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 18 May 2016 13:21:52 +0000 (09:21 -0400)
Remove unused variable 'ret', and directly return 0.

Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/cik_ih.c

index 845c21b..be3d6f7 100644 (file)
@@ -103,7 +103,6 @@ static void cik_ih_disable_interrupts(struct amdgpu_device *adev)
  */
 static int cik_ih_irq_init(struct amdgpu_device *adev)
 {
-       int ret = 0;
        int rb_bufsz;
        u32 interrupt_cntl, ih_cntl, ih_rb_cntl;
        u64 wptr_off;
@@ -156,7 +155,7 @@ static int cik_ih_irq_init(struct amdgpu_device *adev)
        /* enable irqs */
        cik_ih_enable_interrupts(adev);
 
-       return ret;
+       return 0;
 }
 
 /**