lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CADnq5_O8DSAGzbjhz-2XD6tkAQmWMGM1d7YBngzGEmf0w-trdw@mail.gmail.com>
Date:   Tue, 20 Sep 2022 12:10:15 -0400
From:   Alex Deucher <alexdeucher@...il.com>
To:     cgel.zte@...il.com
Cc:     alexander.deucher@....com, airlied@...ux.ie,
        ye xingchen <ye.xingchen@....com.cn>,
        Zeal Robot <zealci@....com.cn>, Xinhui.Pan@....com,
        linux-kernel@...r.kernel.org, amd-gfx@...ts.freedesktop.org,
        dri-devel@...ts.freedesktop.org, evan.quan@....com,
        christian.koenig@....com
Subject: Re: [PATCH linux-next] drm/amd/pm: Remove the unneeded result variable

Applied.  Thanks.

On Tue, Sep 20, 2022 at 2:35 AM <cgel.zte@...il.com> wrote:
>
> From: ye xingchen <ye.xingchen@....com.cn>
>
> Return the value append_vbios_pptable() directly instead of storing it in
> another redundant variable.
>
> Reported-by: Zeal Robot <zealci@....com.cn>
> Signed-off-by: ye xingchen <ye.xingchen@....com.cn>
> ---
>  .../gpu/drm/amd/pm/powerplay/hwmgr/vega12_processpptables.c  | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_processpptables.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_processpptables.c
> index 1e79baab753e..bd54fbd393b9 100644
> --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_processpptables.c
> +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_processpptables.c
> @@ -195,7 +195,6 @@ static int init_powerplay_table_information(
>         struct phm_ppt_v3_information *pptable_information =
>                 (struct phm_ppt_v3_information *)hwmgr->pptable;
>         uint32_t disable_power_control = 0;
> -       int result;
>
>         hwmgr->thermal_controller.ucType = powerplay_table->ucThermalControllerType;
>         pptable_information->uc_thermal_controller_type = powerplay_table->ucThermalControllerType;
> @@ -257,9 +256,7 @@ static int init_powerplay_table_information(
>         if (pptable_information->smc_pptable == NULL)
>                 return -ENOMEM;
>
> -       result = append_vbios_pptable(hwmgr, (pptable_information->smc_pptable));
> -
> -       return result;
> +       return append_vbios_pptable(hwmgr, (pptable_information->smc_pptable));
>  }
>
>  static int vega12_pp_tables_initialize(struct pp_hwmgr *hwmgr)
> --
> 2.25.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ