diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2008-06-01 18:14:26 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2008-06-01 18:14:26 +0000 |
commit | 1491fda4d670acd5b0622f7914e4f6ca08373eed (patch) | |
tree | 6510db67820c9cb03f310c84851dc73cee90ad48 /sys | |
parent | cbc33fb1757f353b753efe6c3cccbfaafd77470f (diff) |
Fix \n nit in SMALL_KERNEL.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi/acpi.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 7b1dcc178c2..a33909d05ef 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.119 2008/06/01 17:59:55 marco Exp $ */ +/* $OpenBSD: acpi.c,v 1.120 2008/06/01 18:14:25 marco Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -519,11 +519,9 @@ acpi_attach(struct device *parent, struct device *self, void *aux) return; } } while (!(acpi_read_pmreg(sc, ACPIREG_PM1_CNT, 0) & ACPI_PM1_SCI_EN)); - - printf("\n"); #endif /* SMALL_KERNEL */ - printf("%s: tables", DEVNAME(sc)); + printf("\n%s: tables", DEVNAME(sc)); SIMPLEQ_FOREACH(entry, &sc->sc_tables, q_next) { printf(" %.4s", entry->q_table); } |