From: Sepherosa Ziehau Date: Thu, 29 Dec 2011 09:26:44 +0000 (+0800) Subject: acpi/pstate: Print coordination X-Git-Tag: v3.0.0~234 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/95b6142f2f5c6d9e8a315e3ee923ce999140327d acpi/pstate: Print coordination --- diff --git a/sys/dev/acpica5/acpi_cpu_pstate.c b/sys/dev/acpica5/acpi_cpu_pstate.c index 22a7990687..a5dca3da43 100644 --- a/sys/dev/acpica5/acpi_cpu_pstate.c +++ b/sys/dev/acpica5/acpi_cpu_pstate.c @@ -631,8 +631,10 @@ acpi_pst_domain_create_pkg(device_t dev, ACPI_OBJECT *obj) } dom = acpi_pst_domain_alloc(domain, coord, nproc); - if (bootverbose) - device_printf(dev, "create pkg domain%u\n", dom->pd_dom); + if (bootverbose) { + device_printf(dev, "create pkg domain%u, coord %#x\n", + dom->pd_dom, dom->pd_coord); + } return dom; }