diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-06 04:09:44 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-06 04:09:44 +0000 |
commit | ac2ee800bea303b469377210852de6af399d82f1 (patch) | |
tree | 71291ae19cb541887852e2a7a3a1a79b16a4717b /sys/dev/acpi | |
parent | 8e63f77e5396994e8d3763d7bc98a2dbfbce6eb8 (diff) |
at least always print a new line, even if NOPSS
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpicpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpicpu.c b/sys/dev/acpi/acpicpu.c index b9ce3b7de7e..ecc351f883a 100644 --- a/sys/dev/acpi/acpicpu.c +++ b/sys/dev/acpi/acpicpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpicpu.c,v 1.21 2007/04/23 04:34:30 gwk Exp $ */ +/* $OpenBSD: acpicpu.c,v 1.22 2007/05/06 04:09:43 tedu Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -324,6 +324,8 @@ 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"); } int |