From 924ede20318280ee0dc64f853540792851a69476 Mon Sep 17 00:00:00 2001 From: Takanori Watanabe Date: Mon, 14 Aug 2006 18:24:22 +0000 Subject: [PATCH] Remove debug messages on notify handler. PR:100671 --- sys/dev/acpi_support/acpi_ibm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/dev/acpi_support/acpi_ibm.c b/sys/dev/acpi_support/acpi_ibm.c index f5d94f250f6d..5f282de804d3 100644 --- a/sys/dev/acpi_support/acpi_ibm.c +++ b/sys/dev/acpi_support/acpi_ibm.c @@ -919,7 +919,6 @@ acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context) ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify); - printf("IBM:NOTIFY:%x\n", notify); if (notify != 0x80) printf("Unknown notify\n"); @@ -929,7 +928,6 @@ acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context) if (event == 0) break; - printf("notify:%x\n", event); type = (event >> 12) & 0xf; arg = event & 0xfff;