public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* How can a patch be merged upstream?
@ 2008-08-25 14:26 Joshua C.
  2008-08-26  1:06 ` Zhao Yakui
  0 siblings, 1 reply; 6+ messages in thread
From: Joshua C. @ 2008-08-25 14:26 UTC (permalink / raw)
  To: linux-acpi

I (and others with acer aspire 5050series laptops) have a broken bios
which resulted in kernel panic. Reported the bug
http://bugzilla.kernel.org/show_bug.cgi?id=10237 and
http://bugzilla.kernel.org/show_bug.cgi?id=8953 and a patch was
written about it. Can/When will this be merged upstream? Any arguments
against this as a hardware/platform solution?

Here is the patch from Zhao Yakui <yakui.zhao@intel.com>

Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>

---
 drivers/acpi/ec.c |   15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

Index: linux-2.6/drivers/acpi/ec.c
===================================================================
--- linux-2.6.orig/drivers/acpi/ec.c
+++ linux-2.6/drivers/acpi/ec.c
@@ -835,8 +835,19 @@ static int ec_install_handlers(struct ac
 						    &acpi_ec_space_handler,
 						    NULL, ec);
 	if (ACPI_FAILURE(status)) {
-		acpi_remove_gpe_handler(NULL, ec->gpe, &acpi_ec_gpe_handler);
-		return -ENODEV;
+		if (status == AE_NOT_FOUND) {
+			/*
+			 * Maybe OS fails in evaluating the _REG object.
+			 * The AE_NOT_FOUND error will be ignored and OS
+			 * continue to initialize EC.
+			 */
+			printk(KERN_ERR "Fail in evaluating _REG object."
+				" It is broken BIOS.\n");
+		} else {
+			acpi_remove_gpe_handler(NULL, ec->gpe,
+				&acpi_ec_gpe_handler);
+			return -ENODEV;
+		}
 	}

 	ec->handlers_installed = 1;

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-08-28  1:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-25 14:26 How can a patch be merged upstream? Joshua C.
2008-08-26  1:06 ` Zhao Yakui
2008-08-27 23:09   ` Andi Kleen
2008-08-27 23:11     ` Carlos Corbacho
2008-08-27 23:37       ` Andi Kleen
2008-08-28  1:18         ` Zhao Yakui

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox