[PATCH] platform/x86: hp-wmi: simplify the return expression of platform_profile_omen_set()
From: cgel . zte
Date: Wed May 04 2022 - 22:19:29 EST
From: Minghao Chi <chi.minghao@xxxxxxxxxx>
Simplify the return expression.
Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
Signed-off-by: Minghao Chi <chi.minghao@xxxxxxxxxx>
---
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)
--
2.25.1