diff options
author | Dimitry Andric <dim@cvs.openbsd.org> | 2006-12-12 23:14:29 +0000 |
---|---|---|
committer | Dimitry Andric <dim@cvs.openbsd.org> | 2006-12-12 23:14:29 +0000 |
commit | 1c2fd965cf1531278e01bc91beaa67624286988c (patch) | |
tree | d401479d5ccf18380f5057cd0a4b6e8135bdb23b /sys/arch/amd64/include | |
parent | cd866cbd96c21d51b3fa4c3d76d66a7e899f7b80 (diff) |
Complete gwk's previous patch to stop setperf methods from returning
errors to userland: make all cpu_setperf functions return void.
Tested by many, ok gwk@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/cpu.h b/sys/arch/amd64/include/cpu.h index ee62a9373ba..5b23973b361 100644 --- a/sys/arch/amd64/include/cpu.h +++ b/sys/arch/amd64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.20 2006/11/25 16:59:31 niklas Exp $ */ +/* $OpenBSD: cpu.h,v 1.21 2006/12/12 23:14:27 dim Exp $ */ /* $NetBSD: cpu.h,v 1.1 2003/04/26 18:39:39 fvdl Exp $ */ /*- @@ -306,7 +306,7 @@ void x86_bus_space_mallocok(void); /* powernow-k8.c */ void k8_powernow_init(void); -int k8_powernow_setperf(int); +void k8_powernow_setperf(int); #endif /* _KERNEL */ |