aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ow
diff options
context:
space:
mode:
authorGavin Atkinson <gavin@FreeBSD.org>2016-12-21 23:54:12 +0000
committerGavin Atkinson <gavin@FreeBSD.org>2016-12-21 23:54:12 +0000
commit3c175909e7a1da7b2c703e6a9bacec190ac819bd (patch)
treefe8b7da85cdc872fa042f958638ebcfebedeb7b5 /sys/dev/ow
parent030b9c2f6902d4ede0fc68e2d81f5048e7ba5d12 (diff)
Notes
Diffstat (limited to 'sys/dev/ow')
-rw-r--r--sys/dev/ow/ow_temp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ow/ow_temp.c b/sys/dev/ow/ow_temp.c
index d5849ad8594b..b89265bc6352 100644
--- a/sys/dev/ow/ow_temp.c
+++ b/sys/dev/ow/ow_temp.c
@@ -164,7 +164,7 @@ ow_temp_event_thread(void *arg)
if (scratch[7]) {
/*
* Formula from DS18S20 datasheet, page 6
- * DS18S20 datahseet says count_per_c is 16, DS1820 does not
+ * DS18S20 datasheet says count_per_c is 16, DS1820 does not
*/
sc->temp = (int16_t)((scratch[0] & 0xfe) |
(scratch[1] << 8)) << 3;