diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-14 15:18:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-14 15:18:08 +0000 |
commit | b8ff4991633883dad60e6bd38b80874446f4a736 (patch) | |
tree | 47cc74b11066793b3c135c72df896e24dd3bcfe5 /sys/arch/arm/include | |
parent | 474efd7546199317946ad88253cfb5bc5e4247aa (diff) |
removal of zts sysctls created a numeric gap. repair. ok miod robert
Diffstat (limited to 'sys/arch/arm/include')
-rw-r--r-- | sys/arch/arm/include/cpu.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/arm/include/cpu.h b/sys/arch/arm/include/cpu.h index c39ad0d5ec6..9aa2166b1f2 100644 --- a/sys/arch/arm/include/cpu.h +++ b/sys/arch/arm/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.17 2007/05/29 21:09:43 robert Exp $ */ +/* $OpenBSD: cpu.h,v 1.18 2007/08/14 15:18:07 deraadt Exp $ */ /* $NetBSD: cpu.h,v 1.34 2003/06/23 11:01:08 martin Exp $ */ /* @@ -62,6 +62,8 @@ #define CPU_ALLOWAPERTURE 6 /* int: allow mmap of /dev/xf86 */ #define CPU_APMWARN 7 /* APM battery warning percentage */ #define CPU_KBDRESET 8 /* int: console keyboard reset */ + /* 9 formerly int: CPU_ZTSRAWMODE */ + /* 10 formerly struct: CPU_ZTSSCALE */ #define CPU_MAXSPEED 11 /* int: number of valid machdep ids */ #define CPU_LIDSUSPEND 12 /* int: closing lid causes suspend */ #define CPU_MAXID 13 /* number of valid machdep ids */ @@ -76,9 +78,11 @@ { "allowaperture", CTLTYPE_INT }, \ { "apmwarn", CTLTYPE_INT }, \ { "kbdreset", CTLTYPE_INT }, \ + { 0, 0 }, \ + { 0, 0 }, \ { "maxspeed", CTLTYPE_INT }, \ { "lidsuspend", CTLTYPE_INT } \ -} +} #ifdef _KERNEL |