http://bugzilla.kernel.org/show_bug.cgi?id=12949





--- Comment #3 from Corrado Zoccolo <czocc...@gmail.com>  2009-03-27 07:24:36 
---
Created an attachment (id=20700)
 --> (http://bugzilla.kernel.org/attachment.cgi?id=20700)
dmesg after disabling acpi_ec_burst_enable

I changed acpi_ec_burst_enable to printk and inconditionally return 0, but this
didn't solve the issue (see below my changes). See attached dmesg.

diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 2fe1506..8e66e88 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -27,7 +27,7 @@
  */

 /* Uncomment next line to get verbose printout */
-/* #define DEBUG */
+#define DEBUG

 #include <linux/kernel.h>
 #include <linux/module.h>
@@ -350,6 +350,8 @@ unlock:
  */
 static int acpi_ec_burst_enable(struct acpi_ec *ec)
 {
+  printk(KERN_INFO "acpi_ec_burst_enable ignored");
+  return 0;
        u8 d;
        struct transaction t = {.command = ACPI_EC_BURST_ENABLE,
                                .wdata = NULL, .rdata = &d,

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

------------------------------------------------------------------------------
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to