Message ID | 20220505021919.54462-1-chi.minghao@zte.com.cn (mailing list archive) |
---|---|
State | Rejected, archived |
Headers | show |
Series | platform/x86: hp-wmi: simplify the return expression of platform_profile_omen_set() | expand |
Hi, On 5/5/22 04:19, cgel.zte@gmail.com wrote: > From: Minghao Chi <chi.minghao@zte.com.cn> > > Simplify the return expression. > > Reported-by: Zeal Robot <zealci@zte.com.cn> > Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn> 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)
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)