OSDN Git Service

drm/i915: Remove unused variable ret
authorZou Wei <zou_wei@huawei.com>
Thu, 29 Oct 2020 02:18:45 +0000 (10:18 +0800)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 29 Oct 2020 13:17:37 +0000 (15:17 +0200)
This patch fixes below warnings reported by coccicheck

./drivers/gpu/drm/i915/i915_debugfs.c:789:5-8: Unneeded variable: "ret". Return "0" on line 1012

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1603937925-53176-1-git-send-email-zou_wei@huawei.com
drivers/gpu/drm/i915/i915_debugfs.c

index 7842199..057fa0f 100644 (file)
@@ -784,7 +784,6 @@ static int i915_frequency_info(struct seq_file *m, void *unused)
        struct intel_uncore *uncore = &dev_priv->uncore;
        struct intel_rps *rps = &dev_priv->gt.rps;
        intel_wakeref_t wakeref;
-       int ret = 0;
 
        wakeref = intel_runtime_pm_get(&dev_priv->runtime_pm);
 
@@ -1007,7 +1006,7 @@ static int i915_frequency_info(struct seq_file *m, void *unused)
        seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq);
 
        intel_runtime_pm_put(&dev_priv->runtime_pm, wakeref);
-       return ret;
+       return 0;
 }
 
 static int i915_ring_freq_table(struct seq_file *m, void *unused)