http://bugzilla.kernel.org/show_bug.cgi?id=5728
------- Additional Comments From [EMAIL PROTECTED] 2006-02-28 10:07 ------- Hi! I finally resolv these warnings with a new dsdt (see http://bugzilla.kernel.org/attachment.cgi?id=7164&action=view in this page)! vinTux ~ # uname -r 2.6.16-rc5 vinTux ~ # cat /proc/acpi/info version: 20060127 vinTux ~ # I patched this kernel for DSDT in built-in mode... vinTux acpi # diff -ruNp osl.old osl.c --- osl.old 2006-02-28 19:01:36.000000000 +0100 +++ osl.c 2006-02-28 19:01:48.000000000 +0100 @@ -25,6 +25,7 @@ * */ +#include <acpi/dsdt_table.h> #include <linux/config.h> #include <linux/module.h> #include <linux/kernel.h> @@ -253,14 +254,8 @@ acpi_os_table_override(struct acpi_table if (!existing_table || !new_table) return AE_BAD_PARAMETER; -#ifdef CONFIG_ACPI_CUSTOM_DSDT - if (strncmp(existing_table->signature, "DSDT", 4) == 0) - *new_table = (struct acpi_table_header *)AmlCode; - else - *new_table = NULL; -#else - *new_table = NULL; -#endif + *new_table = (strncmp(existing_table->signature, DSDT_SIG, 4)) ? NULL \ + : (struct acpi_table_header *) AmlCode; return AE_OK; } vinTux acpi # Best Regards VinX ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. You are on the CC list for the bug, or are watching someone who is. ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ acpi-bugzilla mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
