diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2006-02-26 05:17:26 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2006-02-26 05:17:26 +0000 |
commit | fa81847293f8ca7e7dce4c1c579d8d3e5c340172 (patch) | |
tree | 7c6015fab8385629f00b80aa249c8ea4d52b010b /sys/dev/acpi | |
parent | 740c90444450964c3003505da8da1e4cf87bb71f (diff) |
Print ACPI cpu name during dmesg as well.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpicpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpicpu.c b/sys/dev/acpi/acpicpu.c index aa1c4ee84c1..0fa3ceb0378 100644 --- a/sys/dev/acpi/acpicpu.c +++ b/sys/dev/acpi/acpicpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpicpu.c,v 1.2 2006/02/26 04:38:38 marco Exp $ */ +/* $OpenBSD: acpicpu.c,v 1.3 2006/02/26 05:17:25 marco Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -86,7 +86,7 @@ acpicpu_attach(struct device *parent, struct device *self, void *aux) sc->sc_pss = NULL; - printf(": "); + printf(": %s: ", sc->sc_devnode->parent->name); if (acpicpu_getpss(sc)) { /* XXX not the right test but has to do for now */ printf("can't attach, no _PSS\n"); |