[PATCH v1 1/9] tools/x86/kcpuid: Remove unused variable

From: Ahmed S. Darwish
Date: Thu Jul 18 2024 - 09:48:26 EST


Global variable "num_leafs" is set in multiple places but is never read
anywhere. Remove it.

Signed-off-by: Ahmed S. Darwish <darwi@xxxxxxxxxxxxx>
---
tools/arch/x86/kcpuid/kcpuid.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/tools/arch/x86/kcpuid/kcpuid.c b/tools/arch/x86/kcpuid/kcpuid.c
index 24b7d017ec2c..e1973d8b322e 100644
--- a/tools/arch/x86/kcpuid/kcpuid.c
+++ b/tools/arch/x86/kcpuid/kcpuid.c
@@ -76,7 +76,6 @@ struct cpuid_range {
*/
struct cpuid_range *leafs_basic, *leafs_ext;

-static int num_leafs;
static bool is_amd;
static bool show_details;
static bool show_raw;
@@ -246,7 +245,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax)
allzero = cpuid_store(range, f, subleaf, eax, ebx, ecx, edx);
if (allzero)
continue;
- num_leafs++;

if (!has_subleafs(f))
continue;
@@ -272,7 +270,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax)
eax, ebx, ecx, edx);
if (allzero)
continue;
- num_leafs++;
}

}
--
2.45.2