From e1a90ae12fe0b2b1ff8c12898124e370a5aaeb8b Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Sun, 20 Jul 2003 00:52:57 +0000 Subject: [PATCH] Clarify the ACPI shutdown messages. --- sys/dev/acpica/acpi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index ca361deb4b9c..dd33f0c0ae69 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -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(); } }