summaryrefslogtreecommitdiff
path: root/sys/arch/i386/include/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386/include/cpu.h')
-rw-r--r--sys/arch/i386/include/cpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h
index f7cb2ed54db..d773fca799b 100644
--- a/sys/arch/i386/include/cpu.h
+++ b/sys/arch/i386/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.67 2004/08/05 03:07:47 dlg Exp $ */
+/* $OpenBSD: cpu.h,v 1.68 2005/05/27 10:41:11 kjell Exp $ */
/* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */
/*-
@@ -126,7 +126,7 @@ struct cpu_info {
u_int32_t cpu_class; /* CPU class */
struct cpu_functions *ci_func; /* start/stop functions */
- void (*cpu_setup)(const char *, int, int); /* proc-dependant init */
+ void (*cpu_setup)(struct cpu_info *); /* proc-dependant init */
int ci_want_resched;
int ci_astpending;
@@ -277,7 +277,7 @@ struct cpu_nocpuid_nameclass {
const char *cpu_vendorname;
const char *cpu_name;
int cpu_class;
- void (*cpu_setup)(const char *, int, int);
+ void (*cpu_setup)(struct cpu_info *);
};
struct cpu_cpuid_nameclass {
@@ -287,7 +287,7 @@ struct cpu_cpuid_nameclass {
struct cpu_cpuid_family {
int cpu_class;
const char *cpu_models[CPU_MAXMODEL+2];
- void (*cpu_setup)(const char *, int, int);
+ void (*cpu_setup)(struct cpu_info *);
} cpu_family[CPU_MAXFAMILY - CPU_MINFAMILY + 1];
};