summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-01-21 22:21:48 +0100
committerAngel Pons <th3fanbus@gmail.com>2021-02-14 21:57:13 +0000
commit6ab87664b7566bed1763a93e67e74d06315797e9 (patch)
tree5cfd82d56a407da1318f955b21955aaa05b01200 /src/arch
parente49dec45c8b99fe2ac243fb070c6c3d12b374545 (diff)
downloadcoreboot-6ab87664b7566bed1763a93e67e74d06315797e9.tar.xz
arch/x86: Drop `cstates` pointer from CPU drivers
Nothing uses this pointer anymore. Change-Id: Id2dee8f4cb243114d6f7f7485402acb9b73b7900 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49808 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/include/arch/cpu.h1
1 files changed, 0 insertions, 1 deletions
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);