diff options
author | 2006-11-02 04:58:20 +0000 | |
---|---|---|
committer | 2006-11-02 04:58:20 +0000 | |
commit | 43ae3879902c5c19b31f56aecc9ab21e46b2875a (patch) | |
tree | 8d92757130a2e1840c95ef52e9be51daa9e8555b | |
parent | Add active cooling support mostly by me with jordan help. (diff) | |
download | wireguard-openbsd-43ae3879902c5c19b31f56aecc9ab21e46b2875a.tar.xz wireguard-openbsd-43ae3879902c5c19b31f56aecc9ab21e46b2875a.zip |
Ooops, forgot a debug printf.
-rw-r--r-- | sys/dev/acpi/acpitz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpitz.c b/sys/dev/acpi/acpitz.c index 17dbd20adce..34358799eec 100644 --- a/sys/dev/acpi/acpitz.c +++ b/sys/dev/acpi/acpitz.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpitz.c,v 1.7 2006/11/02 04:56:13 marco Exp $ */ +/* $OpenBSD: acpitz.c,v 1.8 2006/11/02 04:58:20 marco Exp $ */ /* * Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -187,7 +187,7 @@ acpitz_setfan(struct acpitz_softc *sc, int i, char *method) char name[8]; int rv = 1, x, y; - printf("%s: acpitz_setfan(%d, %s)\n", DEVNAME(sc), i, method); + dnprintf(20, "%s: acpitz_setfan(%d, %s)\n", DEVNAME(sc), i, method); snprintf(name, sizeof name, "_AL%d", i); if (aml_evalname(sc->sc_acpi, sc->sc_devnode, name, 0, NULL, &res0)) { |