summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorConstantine A. Murenin <cnst@cvs.openbsd.org>2007-05-25 02:20:26 +0000
committerConstantine A. Murenin <cnst@cvs.openbsd.org>2007-05-25 02:20:26 +0000
commit83e9a987921b809c437db9ced2de82531da03486 (patch)
treef970be2f27ec35a1d6177e165e04361b4b8aa733 /sys/dev/ic
parent35214e07c74055730ae9a90d733a1ee631f9a528 (diff)
fix a typo in RFACT of 3.3Vcc of w83627ehf; ok kettenis
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/lm78.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/lm78.c b/sys/dev/ic/lm78.c
index 27f2c8eff7a..38df3a4ab48 100644
--- a/sys/dev/ic/lm78.c
+++ b/sys/dev/ic/lm78.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lm78.c,v 1.15 2007/04/19 12:23:24 robert Exp $ */
+/* $OpenBSD: lm78.c,v 1.16 2007/05/25 02:20:25 cnst Exp $ */
/*
* Copyright (c) 2005, 2006 Mark Kettenis
@@ -137,7 +137,7 @@ struct lm_sensor w83627ehf_sensors[] = {
{ "VCore", SENSOR_VOLTS_DC, 0, 0x20, lm_refresh_volt, RFACT_NONE / 2},
{ "+12V", SENSOR_VOLTS_DC, 0, 0x21, lm_refresh_volt, RFACT(56, 10) / 2 },
{ "+3.3V", SENSOR_VOLTS_DC, 0, 0x22, lm_refresh_volt, RFACT(34, 34) / 2 },
- { "+3.3V", SENSOR_VOLTS_DC, 0, 0x23, lm_refresh_volt, RFACT(34, 24) / 2 },
+ { "+3.3V", SENSOR_VOLTS_DC, 0, 0x23, lm_refresh_volt, RFACT(34, 34) / 2 },
{ "-12V", SENSOR_VOLTS_DC, 0, 0x24, wb_w83627ehf_refresh_nvolt },
{ "", SENSOR_VOLTS_DC, 0, 0x25, lm_refresh_volt, RFACT_NONE / 2 },
{ "", SENSOR_VOLTS_DC, 0, 0x26, lm_refresh_volt, RFACT_NONE / 2 },