From: zuoqilin Date: Thu, 18 Mar 2021 03:24:22 +0000 (+0800) Subject: drm/msm: Remove unneeded variable: "rc" X-Git-Tag: microblaze-v5.15~42^2~6^2~41 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=48c305808da700cda1a476f77e0a2ad50dd2e8b4;p=linux-2.6-microblaze.git drm/msm: Remove unneeded variable: "rc" Remove unneeded variable: "rc". Signed-off-by: zuoqilin Link: https://lore.kernel.org/r/20210318032422.1285-1-zuoqilin1@163.com Signed-off-by: Dmitry Baryshkov Signed-off-by: Rob Clark --- diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c index 88196f7e4406..440b32753430 100644 --- a/drivers/gpu/drm/msm/dp/dp_panel.c +++ b/drivers/gpu/drm/msm/dp/dp_panel.c @@ -350,7 +350,6 @@ void dp_panel_dump_regs(struct dp_panel *dp_panel) int dp_panel_timing_cfg(struct dp_panel *dp_panel) { - int rc = 0; u32 data, total_ver, total_hor; struct dp_catalog *catalog; struct dp_panel_private *panel; @@ -403,7 +402,7 @@ int dp_panel_timing_cfg(struct dp_panel *dp_panel) dp_catalog_panel_timing_cfg(catalog); panel->panel_on = true; - return rc; + return 0; } int dp_panel_init_panel_info(struct dp_panel *dp_panel)