diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1998-08-30 07:31:33 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1998-08-30 07:31:33 +0000 |
commit | 5ef58ba424569c0766f9b4fba4308288f1449790 (patch) | |
tree | 1589738338fcb929f1dcec50aa40c98ae402c579 /sys | |
parent | c466b23656bfd1be245609ab52bbd374a3b0f6ac (diff) |
Add extra cpu_setup argument.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/include/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index 70e367505a4..5c32f949609 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.23 1998/06/04 05:01:45 downsj Exp $ */ +/* $OpenBSD: cpu.h,v 1.24 1998/08/30 07:31:32 downsj Exp $ */ /* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */ /*- @@ -134,7 +134,7 @@ struct cpu_nocpuid_nameclass { const char *cpu_vendorname; const char *cpu_name; int cpu_class; - void (*cpu_setup) __P((const char *)); + void (*cpu_setup) __P((const char *, int)); }; struct cpu_cpuid_nameclass { @@ -144,7 +144,7 @@ struct cpu_cpuid_nameclass { struct cpu_cpuid_family { int cpu_class; const char *cpu_models[CPU_MAXMODEL+2]; - void (*cpu_setup) __P((const char *)); + void (*cpu_setup) __P((const char *, int)); } cpu_family[CPU_MAXFAMILY - CPU_MINFAMILY + 1]; }; |