diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-28 03:38:33 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-28 03:38:33 +0000 |
commit | b96c7f77d356ed2aec1c20384d9f48aa9643dc09 (patch) | |
tree | 81eb38afd3dcdd5041b44764538e41e41d834567 /sys | |
parent | ce00ed094d4c5901e2067f78455b860f967c7b1c (diff) |
Eliminate unsightly blank lines in dmesg.
ok marco@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi/acpicpu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/acpi/acpicpu.c b/sys/dev/acpi/acpicpu.c index ecc351f883a..3dcf49072b3 100644 --- a/sys/dev/acpi/acpicpu.c +++ b/sys/dev/acpi/acpicpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpicpu.c,v 1.22 2007/05/06 04:09:43 tedu Exp $ */ +/* $OpenBSD: acpicpu.c,v 1.23 2007/05/28 03:38:32 krw Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -185,7 +185,7 @@ acpicpu_add_cstate(struct acpicpu_softc *sc, int type, return cx; bad: - printf("acpicpu%d: C%d not supported\n", sc->sc_cpu, type); + printf("acpicpu%d: C%d not supported", sc->sc_cpu, type); return NULL; } @@ -323,9 +323,9 @@ acpicpu_attach(struct device *parent, struct device *self, void *aux) nopss: if (sc->sc_flags & FLAGS_NOTHROTTLE) - printf("no performance/throttling supported\n"); - else - printf("\n"); + printf("no performance/throttling supported"); + + printf("\n"); } int |