Revert the previous commit on wakecode address verbose printing.

This broke PAE kernel building.
This commit is contained in:
Mitsuru IWASAKI 2012-05-19 02:31:38 +00:00
parent aaa975e19d
commit 29d8e665ba

View File

@ -375,6 +375,6 @@ acpi_install_wakeup_handler(struct acpi_softc *sc)
WAKECODE_FIXUP(wakeup_ret, void *, resumectx);
if (bootverbose)
device_printf(sc->acpi_dev, "wakeup code va %p pa %p\n",
(void *)sc->acpi_wakeaddr, (void *)sc->acpi_wakephys);
device_printf(sc->acpi_dev, "wakeup code va %#x pa %#jx\n",
sc->acpi_wakeaddr, (uintmax_t)sc->acpi_wakephys);
}