diff options
author | Jordan Hargrave <jordan@cvs.openbsd.org> | 2005-11-28 20:37:17 +0000 |
---|---|---|
committer | Jordan Hargrave <jordan@cvs.openbsd.org> | 2005-11-28 20:37:17 +0000 |
commit | f2a61f879406131f63a5b3db7108b59870ec74e9 (patch) | |
tree | 5f851a0e96b27e318a90ff35d8f92f23d0c4999c /sys | |
parent | 163dcbfb8108627f5f925a2b79be4edcbd9385a2 (diff) |
Fixed Motherbobrd typo
Changed type of Power Unit sensor
ok marco@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/esm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/esm.c b/sys/arch/i386/i386/esm.c index 04dd74ba0e6..e8a6dba2dd7 100644 --- a/sys/arch/i386/i386/esm.c +++ b/sys/arch/i386/i386/esm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: esm.c,v 1.17 2005/11/28 20:27:43 jordan Exp $ */ +/* $OpenBSD: esm.c,v 1.18 2005/11/28 20:37:16 jordan Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -360,7 +360,7 @@ esm_get_devmap(struct esm_softc *sc, int dev, struct esm_devmap *devmap) } struct esm_sensor_map esm_sensors_esm2[] = { - { ESM_S_UNKNOWN, 0, "Motherbobrd" }, + { ESM_S_UNKNOWN, 0, "Motherboard" }, { ESM_S_TEMP, 0, "CPU 1" }, { ESM_S_TEMP, 0, "CPU 2" }, { ESM_S_TEMP, 0, "CPU 3" }, @@ -463,7 +463,7 @@ struct esm_sensor_map esm_sensors_backplane[] = { }; struct esm_sensor_map esm_sensors_powerunit[] = { - { SENSOR_INTEGER, 0, "Power Unit" }, + { ESM_S_UNKNOWN, 0, "Power Unit" }, { ESM_S_VOLTS, ESM_A_PWRSUP_1, "Power Supply 1 +5V" }, { ESM_S_VOLTS, ESM_A_PWRSUP_1, "Power Supply 1 +12V" }, { ESM_S_VOLTS, ESM_A_PWRSUP_1, "Power Supply 1 +3.3V" }, |