From 4ce1f116cf29bd4a152f2f3847ae7ae27b48e21a Mon Sep 17 00:00:00 2001 From: thorpej Date: Sat, 29 Sep 2001 05:36:49 +0000 Subject: [PATCH] Don't be DEBUG by default, but still be noisy about lid status changes until such time as we actually do something with them. --- sys/dev/acpi/acpi_lid.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sys/dev/acpi/acpi_lid.c b/sys/dev/acpi/acpi_lid.c index 5a62f95c4698..c09cf0899ad4 100644 --- a/sys/dev/acpi/acpi_lid.c +++ b/sys/dev/acpi/acpi_lid.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_lid.c,v 1.1 2001/09/28 02:30:13 thorpej Exp $ */ +/* $NetBSD: acpi_lid.c,v 1.2 2001/09/29 05:36:49 thorpej Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -47,8 +47,6 @@ #include #include -#define ACPI_LID_DEBUG - struct acpilid_softc { struct device sc_dev; /* base device glue */ struct acpi_devnode *sc_node; /* our ACPI devnode */ @@ -110,10 +108,8 @@ acpilid_attach(struct device *parent, struct device *self, void *aux) return; } -#ifdef ACPI_LID_DEBUG /* Display the current state when it changes. */ sc->sc_flags = ACPILID_F_VERBOSE; -#endif } /*