Commit 39e47005 authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by Thomas Gleixner

tools/x86/kcpuid: Remove unused variable

Global variable "num_leafs" is set in multiple places but is never read
anywhere.  Remove it.
Signed-off-by: default avatarAhmed S. Darwish <darwi@linutronix.de>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20240718134755.378115-2-darwi@linutronix.de
parent 59c34008
...@@ -76,7 +76,6 @@ struct cpuid_range { ...@@ -76,7 +76,6 @@ struct cpuid_range {
*/ */
struct cpuid_range *leafs_basic, *leafs_ext; struct cpuid_range *leafs_basic, *leafs_ext;
static int num_leafs;
static bool is_amd; static bool is_amd;
static bool show_details; static bool show_details;
static bool show_raw; static bool show_raw;
...@@ -246,7 +245,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax) ...@@ -246,7 +245,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax)
allzero = cpuid_store(range, f, subleaf, eax, ebx, ecx, edx); allzero = cpuid_store(range, f, subleaf, eax, ebx, ecx, edx);
if (allzero) if (allzero)
continue; continue;
num_leafs++;
if (!has_subleafs(f)) if (!has_subleafs(f))
continue; continue;
...@@ -272,7 +270,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax) ...@@ -272,7 +270,6 @@ struct cpuid_range *setup_cpuid_range(u32 input_eax)
eax, ebx, ecx, edx); eax, ebx, ecx, edx);
if (allzero) if (allzero)
continue; continue;
num_leafs++;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment