diff options
author | 2011-09-16 15:44:31 +0000 | |
---|---|---|
committer | 2011-09-16 15:44:31 +0000 | |
commit | ea99e918fef71c45bcb8689e939c70149d2a77ce (patch) | |
tree | 5a03524c3bf366c84cfd4dfe5d95b204b2ea9d01 /sys | |
parent | use .St here for ISO 8601 references; ok millert (diff) | |
download | wireguard-openbsd-ea99e918fef71c45bcb8689e939c70149d2a77ce.tar.xz wireguard-openbsd-ea99e918fef71c45bcb8689e939c70149d2a77ce.zip |
apply following changes to sensor framework:
- change accuracy of SENSOR_FREQ from Hz to muHz
- add SENSOR_VOLTS_AC entry to userland programs
ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/sensors.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/sensors.h b/sys/sys/sensors.h index c434244e729..9e7828faa5e 100644 --- a/sys/sys/sensors.h +++ b/sys/sys/sensors.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sensors.h,v 1.30 2010/04/21 19:40:59 deraadt Exp $ */ +/* $OpenBSD: sensors.h,v 1.31 2011/09/16 15:44:31 yuo Exp $ */ /* * Copyright (c) 2003, 2004 Alexander Yurchenko <grange@openbsd.org> @@ -47,7 +47,7 @@ enum sensor_type { SENSOR_DRIVE, /* disk */ SENSOR_TIMEDELTA, /* system time error (nSec) */ SENSOR_HUMIDITY, /* humidity (m%RH) */ - SENSOR_FREQ, /* frequency (Hz) */ + SENSOR_FREQ, /* frequency (muHz) */ SENSOR_ANGLE, /* angle (mudegrees) */ SENSOR_MAX_TYPES }; |