diff options
author | njl <njl@FreeBSD.org> | 2003-07-20 00:52:57 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-07-20 00:52:57 +0000 |
commit | 4d5d6addf8e6c8dad46eafc29bee54b2549dcbbe (patch) | |
tree | 9e90f0c65c5a74ca25be2132bc16abefe752577d | |
parent | deb4e4e45d423e7f9261bf8c8bb4d0bc72f6bd3f (diff) | |
download | FreeBSD-src-4d5d6addf8e6c8dad46eafc29bee54b2549dcbbe.zip FreeBSD-src-4d5d6addf8e6c8dad46eafc29bee54b2549dcbbe.tar.gz |
Clarify the ACPI shutdown messages.
-rw-r--r-- | sys/dev/acpica/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index ca361de..dd33f0c 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(); } } |