diff options
author | 2017-03-03 14:54:02 +0000 | |
---|---|---|
committer | 2017-03-03 14:54:02 +0000 | |
commit | 42255e0d154ab5185855dad4cb1157e94b7d94b8 (patch) | |
tree | 177c559b3befa1cbd768e79fa12b306e329938d6 | |
parent | It is allowed to sleep in route_output() as we run in process context (diff) | |
download | wireguard-openbsd-42255e0d154ab5185855dad4cb1157e94b7d94b8.tar.xz wireguard-openbsd-42255e0d154ab5185855dad4cb1157e94b7d94b8.zip |
Fix the lidsuspend sysctl name in arm/include/cpu.h
From Markus Hennecke, thanks
-rw-r--r-- | sys/arch/arm/include/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arm/include/cpu.h b/sys/arch/arm/include/cpu.h index 9af743192f8..3219069f050 100644 --- a/sys/arch/arm/include/cpu.h +++ b/sys/arch/arm/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.44 2017/03/02 10:38:10 natano Exp $ */ +/* $OpenBSD: cpu.h,v 1.45 2017/03/03 14:54:02 tom Exp $ */ /* $NetBSD: cpu.h,v 1.34 2003/06/23 11:01:08 martin Exp $ */ /* @@ -82,8 +82,8 @@ { 0, 0 }, \ { 0, 0 }, \ { "maxspeed", CTLTYPE_INT }, \ - { "lidsuspend", CTLTYPE_INT } \ - { "lidaction", CTLTYPE_INT } \ + { "lidsuspend", CTLTYPE_INT }, \ + { "lidaction", CTLTYPE_INT }, \ } #ifdef _KERNEL |