diff mbox series

drm/msm: remove unneeded variable: "rc"

Message ID 20210202123214.15787-1-bernard@vivo.com (mailing list archive)
State Accepted
Commit 5ca6d0268df8d7a4e1e453bc8a1ee3459fde12a2
Headers show
Series drm/msm: remove unneeded variable: "rc" | expand

Commit Message

Bernard Zhao Feb. 2, 2021, 12:32 p.m. UTC
remove unneeded variable: "rc".

Signed-off-by: Bernard Zhao <bernard@vivo.com>
---
 drivers/gpu/drm/msm/dp/dp_panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Guenter Roeck Feb. 2, 2021, 4:19 p.m. UTC | #1
On Tue, Feb 2, 2021 at 4:32 AM Bernard Zhao <bernard@vivo.com> wrote:
>
> remove unneeded variable: "rc".
>
> Signed-off-by: Bernard Zhao <bernard@vivo.com>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

>
> ---
>  drivers/gpu/drm/msm/dp/dp_panel.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c
> index d1780bcac8cc..9cc816663668 100644
> --- a/drivers/gpu/drm/msm/dp/dp_panel.c
> +++ b/drivers/gpu/drm/msm/dp/dp_panel.c
> @@ -409,7 +409,6 @@ int dp_panel_timing_cfg(struct dp_panel *dp_panel)
>
>  int dp_panel_init_panel_info(struct dp_panel *dp_panel)
>  {
> -       int rc = 0;
>         struct drm_display_mode *drm_mode;
>
>         drm_mode = &dp_panel->dp_mode.drm_mode;
> @@ -436,7 +435,7 @@ int dp_panel_init_panel_info(struct dp_panel *dp_panel)
>                                         min_t(u32, dp_panel->dp_mode.bpp, 30));
>         DRM_DEBUG_DP("updated bpp = %d\n", dp_panel->dp_mode.bpp);
>
> -       return rc;
> +       return 0;
>  }
>
>  struct dp_panel *dp_panel_get(struct dp_panel_in *in)
> --
> 2.29.0
>
Stephen Boyd Feb. 2, 2021, 6:21 p.m. UTC | #2
Quoting Bernard Zhao (2021-02-02 04:32:03)
> remove unneeded variable: "rc".
> 
> Signed-off-by: Bernard Zhao <bernard@vivo.com>
> ---

Reviewed-by: Stephen Boyd <swboyd@chromium.org>
patchwork-bot+linux-arm-msm@kernel.org March 1, 2021, 7:59 p.m. UTC | #3
Hello:

This patch was applied to qcom/linux.git (refs/heads/for-next):

On Tue,  2 Feb 2021 04:32:03 -0800 you wrote:
> remove unneeded variable: "rc".
> 
> Signed-off-by: Bernard Zhao <bernard@vivo.com>
> ---
>  drivers/gpu/drm/msm/dp/dp_panel.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Here is the summary with links:
  - drm/msm: remove unneeded variable: "rc"
    https://git.kernel.org/qcom/c/5ca6d0268df8

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c
index d1780bcac8cc..9cc816663668 100644
--- a/drivers/gpu/drm/msm/dp/dp_panel.c
+++ b/drivers/gpu/drm/msm/dp/dp_panel.c
@@ -409,7 +409,6 @@  int dp_panel_timing_cfg(struct dp_panel *dp_panel)
 
 int dp_panel_init_panel_info(struct dp_panel *dp_panel)
 {
-	int rc = 0;
 	struct drm_display_mode *drm_mode;
 
 	drm_mode = &dp_panel->dp_mode.drm_mode;
@@ -436,7 +435,7 @@  int dp_panel_init_panel_info(struct dp_panel *dp_panel)
 					min_t(u32, dp_panel->dp_mode.bpp, 30));
 	DRM_DEBUG_DP("updated bpp = %d\n", dp_panel->dp_mode.bpp);
 
-	return rc;
+	return 0;
 }
 
 struct dp_panel *dp_panel_get(struct dp_panel_in *in)