1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Clarify the ACPI shutdown messages.

This commit is contained in:
Nate Lawson 2003-07-20 00:52:57 +00:00
parent f8335e3a97
commit e1a90ae12f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117796

View File

@ -929,7 +929,7 @@ acpi_shutdown_final(void *arg, int howto)
ACPI_ASSERTLOCK;
if (howto & RB_POWEROFF) {
printf("Power system off using ACPI...\n");
printf("Powering system off using ACPI\n");
if (ACPI_FAILURE(status = AcpiEnterSleepStatePrep(acpi_off_state))) {
printf("AcpiEnterSleepStatePrep failed - %s\n",
AcpiFormatException(status));
@ -942,7 +942,7 @@ acpi_shutdown_final(void *arg, int howto)
printf("ACPI power-off failed - timeout\n");
}
} else {
printf("Terminate ACPI\n");
printf("Shutting down ACPI\n");
AcpiTerminate();
}
}