summaryrefslogtreecommitdiff
path: root/sys/dev/acpi
diff options
context:
space:
mode:
authorad <ad@NetBSD.org>2007-02-09 21:55:00 +0000
committerad <ad@NetBSD.org>2007-02-09 21:55:00 +0000
commitb07ec3fc388a5aeae51e8871aa89eefea3ce1e53 (patch)
treec93d3b23a29f98ac0e26c9d43afb509219d0ea42 /sys/dev/acpi
parent5c1aad3ad0b9d2403784bd52128e8e8399e22254 (diff)
Merge newlock2 to head.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r--sys/dev/acpi/acpi.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c
index 840f84a4ef2..e88f397a724 100644
--- a/sys/dev/acpi/acpi.c
+++ b/sys/dev/acpi/acpi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi.c,v 1.98 2006/11/26 12:30:05 cube Exp $ */
+/* $NetBSD: acpi.c,v 1.99 2007/02/09 21:55:26 ad Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.98 2006/11/26 12:30:05 cube Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.99 2007/02/09 21:55:26 ad Exp $");
#include "opt_acpi.h"
#include "opt_pcifixup.h"
@@ -562,7 +562,8 @@ acpi_activate_device(ACPI_HANDLE handle, ACPI_DEVICE_INFO **di)
aprint_error("acpi: activate failed for %s\n",
(*di)->HardwareId.Value);
} else {
- aprint_normal("acpi: activated %s\n", (*di)->HardwareId.Value);
+ aprint_verbose("acpi: activated %s\n",
+ (*di)->HardwareId.Value);
}
(void)AcpiGetObjectInfo(handle, &buf);
@@ -752,7 +753,7 @@ acpi_enable_fixed_events(struct acpi_softc *sc)
*/
if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->PwrButton == 0) {
- aprint_normal("%s: fixed-feature power button present\n",
+ aprint_verbose("%s: fixed-feature power button present\n",
sc->sc_dev.dv_xname);
sc->sc_smpsw_power.smpsw_name = sc->sc_dev.dv_xname;
sc->sc_smpsw_power.smpsw_type = PSWITCH_TYPE_POWER;
@@ -773,7 +774,7 @@ acpi_enable_fixed_events(struct acpi_softc *sc)
}
if (AcpiGbl_FADT != NULL && AcpiGbl_FADT->SleepButton == 0) {
- aprint_normal("%s: fixed-feature sleep button present\n",
+ aprint_verbose("%s: fixed-feature sleep button present\n",
sc->sc_dev.dv_xname);
sc->sc_smpsw_sleep.smpsw_name = sc->sc_dev.dv_xname;
sc->sc_smpsw_sleep.smpsw_type = PSWITCH_TYPE_SLEEP;