diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2024-05-12 16:49:39 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2024-05-12 16:49:39 +0000 |
commit | a98155308f8b8c2dc343790c9707f673ccac4daa (patch) | |
tree | e63e8041c195ff0c3e78ff8ae51104a24c9ee1ac /sys/arch/amd64/include | |
parent | d3939c28b2f2ac086af00524747483c7ab488a23 (diff) |
Delete the cpu_perf_e[abd]x and cpu_apmi_edx globals and move the
cpuid uses into identifycpu(), as they aren't needed anywhere else.
ok kettenis@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/cpu.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/amd64/include/cpu.h b/sys/arch/amd64/include/cpu.h index 318e87b5988..758950f4e41 100644 --- a/sys/arch/amd64/include/cpu.h +++ b/sys/arch/amd64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.168 2024/05/01 12:54:27 mpi Exp $ */ +/* $OpenBSD: cpu.h,v 1.169 2024/05/12 16:49:38 guenther Exp $ */ /* $NetBSD: cpu.h,v 1.1 2003/04/26 18:39:39 fvdl Exp $ */ /*- @@ -393,10 +393,6 @@ struct timeval; extern int cpu_feature; extern int cpu_ebxfeature; extern int cpu_ecxfeature; -extern int cpu_perf_eax; -extern int cpu_perf_ebx; -extern int cpu_perf_edx; -extern int cpu_apmi_edx; extern int ecpu_ecxfeature; extern int cpu_id; extern char cpu_vendor[]; |