mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
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: Ahmed S. Darwish <darwi@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/20240718134755.378115-2-darwi@linutronix.de
This commit is contained in:
parent
59c34008d3
commit
39e470057f
|
|
@ -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++;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user