From 6ab87664b7566bed1763a93e67e74d06315797e9 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Thu, 21 Jan 2021 22:21:48 +0100 Subject: [PATCH] arch/x86: Drop `cstates` pointer from CPU drivers Nothing uses this pointer anymore. Change-Id: Id2dee8f4cb243114d6f7f7485402acb9b73b7900 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/49808 Reviewed-by: Nico Huber Tested-by: build bot (Jenkins) --- src/arch/x86/include/arch/cpu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index c2cc4ef5c0..889628da27 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -217,7 +217,6 @@ struct cpu_device_id { struct cpu_driver { struct device_operations *ops; const struct cpu_device_id *id_table; - struct acpi_cstate *cstates; }; struct cpu_driver *find_cpu_driver(struct device *cpu);