Re: [PATCH] platform/x86: hp-wmi: simplify the return expression of platform_profile_omen_set()

From: Hans de Goede
Date: Fri May 06 2022 - 06:18:48 EST


Hi,

On 5/5/22 04:19, cgel.zte@xxxxxxxxx wrote:
> From: Minghao Chi <chi.minghao@xxxxxxxxxx>
>
> Simplify the return expression.
>
> Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
> Signed-off-by: Minghao Chi <chi.minghao@xxxxxxxxxx>

omen_thermal_profile_set(tp) returns the value of tp on
success which is not necessarily always 0, so this
patch is invalid.

Regards,

Hans



> ---
> drivers/platform/x86/hp-wmi.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c
> index 667f94bba905..9edb1f877189 100644
> --- a/drivers/platform/x86/hp-wmi.c
> +++ b/drivers/platform/x86/hp-wmi.c
> @@ -1119,7 +1119,7 @@ static int platform_profile_omen_get(struct platform_profile_handler *pprof,
> static int platform_profile_omen_set(struct platform_profile_handler *pprof,
> enum platform_profile_option profile)
> {
> - int err, tp, tp_version;
> + int tp, tp_version;
>
> tp_version = omen_get_thermal_policy_version();
>
> @@ -1149,11 +1149,7 @@ static int platform_profile_omen_set(struct platform_profile_handler *pprof,
> return -EOPNOTSUPP;
> }
>
> - err = omen_thermal_profile_set(tp);
> - if (err < 0)
> - return err;
> -
> - return 0;
> + return omen_thermal_profile_set(tp);
> }
>
> static int thermal_profile_get(void)