From 3a44e8ad9d0f95b33a24e76a9cd3b2c9c4fe79f1 Mon Sep 17 00:00:00 2001 From: reinoud Date: Mon, 10 Dec 2007 22:56:29 +0000 Subject: [PATCH] Add missing \n and remove surplus . --- sys/dev/acpi/acpi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index f94dc796ada4..038685414413 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi.c,v 1.104 2007/12/09 20:27:52 jmcneill Exp $ */ +/* $NetBSD: acpi.c,v 1.105 2007/12/10 22:56:29 reinoud Exp $ */ /*- * Copyright (c) 2003, 2007 The NetBSD Foundation, Inc. @@ -77,7 +77,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.104 2007/12/09 20:27:52 jmcneill Exp $"); +__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.105 2007/12/10 22:56:29 reinoud Exp $"); #include "opt_acpi.h" #include "opt_pcifixup.h" @@ -1175,13 +1175,13 @@ acpi_enter_sleep_state(struct acpi_softc *sc, int state) case ACPI_STATE_S3: case ACPI_STATE_S4: if (!is_available_state(sc, state)) { - aprint_error("%s: cannot enter the sleep state (%d).\n", + aprint_error("%s: cannot enter the sleep state (%d)\n", sc->sc_dev.dv_xname, state); break; } if (state != ACPI_STATE_S1 && !pmf_system_suspend()) { - aprint_error_dev(&sc->sc_dev, "aborting suspend"); + aprint_error_dev(&sc->sc_dev, "aborting suspend\n"); break; }