[PATCH 1/3] perf tool x86: Remove unnecessary conversion to bool

From: Jules Irenge
Date: Fri Nov 03 2023 - 20:02:48 EST


coccinelle reports a warning at x86__is_amd_cpu()

WARNING: conversion to bool not needed here

To fix this, the unnecessary bool conversion is removed here

Signed-off-by: Jules Irenge <jbi.octave@xxxxxxxxx>
---
tools/perf/arch/x86/util/env.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/arch/x86/util/env.c b/tools/perf/arch/x86/util/env.c
index 3e537ffb1353..5b0db77f8e0f 100644
--- a/tools/perf/arch/x86/util/env.c
+++ b/tools/perf/arch/x86/util/env.c
@@ -15,5 +15,5 @@ bool x86__is_amd_cpu(void)
is_amd = env.cpuid && strstarts(env.cpuid, "AuthenticAMD") ? 1 : -1;
perf_env__exit(&env);
ret:
- return is_amd >= 1 ? true : false;
+ return is_amd >= 1;
}
--
2.41.0