diff options
author | Guillaume Chazarain <guichaz@yahoo.fr> | 2006-12-24 21:19:02 (GMT) |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-01-02 05:12:19 (GMT) |
commit | c6e19194b6e1a565f8fe18d56d509e9892c32ee1 (patch) | |
tree | 0337077c68c9f4fdbf423050a2d5944777133d56 /drivers/acpi/ec.c | |
parent | 27c5d745ac685c3f48cebd7a9c07707755b4b711 (diff) | |
download | linux-c6e19194b6e1a565f8fe18d56d509e9892c32ee1.tar.xz |
ACPI: EC: move verbose printk to debug build only
The recent EC cleanup left a printk enabled on handler evaluation
resulting in a bunch of messages on normal operation, like so:
ACPI: EC: evaluating _Q60
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 9c52d87..4144d5d 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -424,7 +424,7 @@ static void acpi_ec_gpe_query(void *ec_cxt) snprintf(object_name, 8, "_Q%2.2X", value); - printk(KERN_INFO PREFIX "evaluating %s\n", object_name); + ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s", object_name)); acpi_evaluate_object(ec->handle, object_name, NULL, NULL); } |