diff options
-rw-r--r-- | sys/arch/amd64/amd64/acpi_machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/i386/i386/acpi_machdep.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/acpi_machdep.c b/sys/arch/amd64/amd64/acpi_machdep.c index bcb711dd164..17d8fb205ef 100644 --- a/sys/arch/amd64/amd64/acpi_machdep.c +++ b/sys/arch/amd64/amd64/acpi_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi_machdep.c,v 1.77 2017/03/27 18:24:08 deraadt Exp $ */ +/* $OpenBSD: acpi_machdep.c,v 1.78 2017/03/27 18:32:53 mlarkin Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -395,7 +395,7 @@ acpi_sleep_cpu(struct acpi_softc *sc, int state) #ifdef HIBERNATE if (state == ACPI_STATE_S4) { if (hibernate_suspend()) { - printf("%s: hibernate_suspend failed", + printf("%s: hibernate_suspend failed\n", DEVNAME(sc)); return (ECANCELED); } diff --git a/sys/arch/i386/i386/acpi_machdep.c b/sys/arch/i386/i386/acpi_machdep.c index 3f00cad0de2..890a3637f9b 100644 --- a/sys/arch/i386/i386/acpi_machdep.c +++ b/sys/arch/i386/i386/acpi_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi_machdep.c,v 1.61 2017/03/27 18:24:08 deraadt Exp $ */ +/* $OpenBSD: acpi_machdep.c,v 1.62 2017/03/27 18:32:53 mlarkin Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -355,7 +355,7 @@ acpi_sleep_cpu(struct acpi_softc *sc, int state) #ifdef HIBERNATE if (state == ACPI_STATE_S4) { if (hibernate_suspend()) { - printf("%s: hibernate_suspend failed", + printf("%s: hibernate_suspend failed\n", DEVNAME(sc)); return (ECANCELED); } |