diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2011-06-15 00:15:55 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2011-06-15 00:15:55 +0000 |
commit | 295fe234b22aea9894037c1519e7fd090eb126f0 (patch) | |
tree | fb8ff16ba726a370d18964ce2625d091f615b71c /sys/dev/acpi | |
parent | beaad27cfe37d51b0fa14d909a65611899eea62a (diff) |
try to make critical messages make more sense. help from sthen.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpitz.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpitz.c b/sys/dev/acpi/acpitz.c index e6c62ebaf5c..b57dec3548f 100644 --- a/sys/dev/acpi/acpitz.c +++ b/sys/dev/acpi/acpitz.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpitz.c,v 1.42 2011/04/07 20:16:19 jordan Exp $ */ +/* $OpenBSD: acpitz.c,v 1.43 2011/06/15 00:15:54 marco Exp $ */ /* * Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -204,7 +204,7 @@ acpitz_attach(struct device *parent, struct device *self, void *aux) if ((sc->sc_crt = acpitz_gettempreading(sc, "_CRT")) == -1) printf(": no critical temperature defined\n"); else - printf(": critical temperature %d degC\n", KTOC(sc->sc_crt)); + printf(": critical temperature is %d degC\n", KTOC(sc->sc_crt)); sc->sc_hot = acpitz_gettempreading(sc, "_HOT"); sc->sc_tc1 = acpitz_getreading(sc, "_TC1"); @@ -327,7 +327,8 @@ acpitz_refresh(void *arg) /* critical trip points */ if (sc->sc_crt != -1 && sc->sc_crt <= sc->sc_tmp) { /* do critical shutdown */ - printf("%s: Critical temperature %dC (%dK), shutting down\n", + printf("%s: critical temperature exceeded %dC (%dK), shutting " + "down\n", DEVNAME(sc), KTOC(sc->sc_tmp), sc->sc_tmp); psignal(initproc, SIGUSR2); } |