summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-02-21 16:50:51 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-02-21 16:50:51 +0000
commite094ac6adc2b037b3599fbd8716dd700bd2b135f (patch)
tree3d01ac7ed8a4fe465f961a981ccd64fbc9c7dda6 /sys
parent0cd88da2dbb9e95e5d8fb3f2d48aaa5a37580d26 (diff)
Adjust debug levels since _STA often doesn't exist and its annoyingly loud.
KNF
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/acpi/acpibtn.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/acpi/acpibtn.c b/sys/dev/acpi/acpibtn.c
index ca2ff5501d8..96a0308b521 100644
--- a/sys/dev/acpi/acpibtn.c
+++ b/sys/dev/acpi/acpibtn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpibtn.c,v 1.4 2006/02/21 04:30:45 marco Exp $ */
+/* $OpenBSD: acpibtn.c,v 1.5 2006/02/21 16:50:50 marco Exp $ */
/*
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
*
@@ -71,8 +71,8 @@ struct cfdriver acpibtn_cd = {
int
acpibtn_match(struct device *parent, void *match, void *aux)
{
- struct acpi_attach_args *aa = aux;
- struct cfdata *cf = match;
+ struct acpi_attach_args *aa = aux;
+ struct cfdata *cf = match;
/* sanity */
if (aa->aaa_name == NULL ||
@@ -86,7 +86,7 @@ acpibtn_match(struct device *parent, void *match, void *aux)
void
acpibtn_attach(struct device *parent, struct device *self, void *aux)
{
- struct acpibtn_softc *sc = (struct acpibtn_softc *)self;
+ struct acpibtn_softc *sc = (struct acpibtn_softc *)self;
struct acpi_attach_args *aa = aux;
sc->sc_acpi = (struct acpi_softc *)parent;
@@ -137,15 +137,15 @@ acpibtn_refresh(void *arg)
int
acpibtn_getsta(struct acpibtn_softc *sc)
{
- struct aml_value res, env;
- struct acpi_context *ctx;
+ struct aml_value res, env;
+ struct acpi_context *ctx;
memset(&res, 0, sizeof(res));
memset(&env, 0, sizeof(env));
ctx = NULL;
if (aml_eval_name(sc->sc_acpi, sc->sc_devnode, "_STA", &res, &env))
- dnprintf(10, "%s: no _STA\n", DEVNAME(sc));
+ dnprintf(20, "%s: no _STA\n", DEVNAME(sc));
/* not all buttons have _STA so FALLTROUGH */
return (0);