From: Thomas Renninger <trenn-l3A5Bk7waGM@public.gmane.org>
To: ML ACPI-devel
<acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: Latest acpica
Date: Thu, 08 Sep 2005 12:15:51 +0200 [thread overview]
Message-ID: <43200F57.9040000@suse.de> (raw)
[-- Attachment #1: Type: text/plain, Size: 717 bytes --]
acpica-unix-20050902.tar.gz
is now available under:
http://developer.intel.com/technology/iapc/acpi/downloads.htm
Thanks.
There is one concern:
This has been discussed some weeks ago.
The compiler throws dozens of errors on some DSDTs:
DSDT.dsl 777: , AddressRangeMemory, TypeStatic)
Error 1084 - Missing ResourceSource string (required) ^
I cannot find the mail now, but IIRC Len said this was added to identify
how many DSDTs violate specs (is it optional or not?) and should be removed
again later.
The patch attached lowers the error to a warning, so that you get a compiled
DSDT as output.
Not sure, maybe the error/warning case should be reverted totally?
Thomas
[-- Attachment #2: resource_string_warning.diff --]
[-- Type: text/x-patch, Size: 3108 bytes --]
--- compiler/aslrestype2.c.orig 2005-09-08 12:05:25.000000000 +0200
+++ compiler/aslrestype2.c 2005-09-08 12:08:10.000000000 +0200
@@ -331,7 +331,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -545,7 +545,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -757,7 +757,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -1430,7 +1430,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -1639,7 +1639,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -1846,7 +1846,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -2034,7 +2034,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -2234,7 +2234,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -2431,7 +2431,7 @@
*/
else if (ResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
@@ -2592,7 +2592,7 @@
*/
else if (HasResSourceIndex)
{
- AslError (ASL_ERROR, ASL_MSG_RESOURCE_SOURCE,
+ AslError (ASL_WARNING, ASL_MSG_RESOURCE_SOURCE,
InitializerOp, NULL);
}
break;
next reply other threads:[~2005-09-08 10:15 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-08 10:15 Thomas Renninger [this message]
[not found] ` <43200F57.9040000-l3A5Bk7waGM@public.gmane.org>
2005-09-08 16:59 ` Latest acpica Frank
[not found] ` <200509081859.57340.hugelmopf-S0/GAf8tV78@public.gmane.org>
2005-09-08 17:15 ` Thomas Renninger
2005-09-08 18:38 ` Matthew Wilcox
[not found] ` <20050908183832.GA4770-6jwH94ZQLHl74goWV3ctuw@public.gmane.org>
2005-09-08 19:49 ` Frank
[not found] ` <200509082149.57483.hugelmopf-S0/GAf8tV78@public.gmane.org>
2005-09-09 8:10 ` Sebastian Henschel
-- strict thread matches above, loose matches on Subject: below --
2005-09-08 16:50 Moore, Robert
[not found] ` <971FCB6690CD0E4898387DBF7552B90E02A69A30-sBd4vmA9Se5Qxe9IK+vIArfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2005-09-08 17:21 ` Thomas Renninger
2005-09-08 19:23 Moore, Robert
[not found] ` <971FCB6690CD0E4898387DBF7552B90E02AA3FD6-sBd4vmA9Se5Qxe9IK+vIArfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2005-09-08 19:30 ` Matthew Wilcox
2005-09-08 19:35 Moore, Robert
[not found] ` <971FCB6690CD0E4898387DBF7552B90E02AA4005-sBd4vmA9Se5Qxe9IK+vIArfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2005-10-12 17:37 ` Andrew Grover
[not found] ` <c0a09e5c0510121037l3be5774bj3ec5e0d50449c69f-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2005-10-12 21:56 ` Mattia Dongili
[not found] ` <20051012215628.GG3658-MEqNC12sBsHxa7XIdbXXog@public.gmane.org>
2005-10-13 0:00 ` Andrew Grover
[not found] ` <c0a09e5c0510121700saa456d6kff2b05b858bc1251-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2005-10-13 7:56 ` Mattia Dongili
2005-10-18 20:14 ` Mattia Dongili
[not found] ` <20051018201407.GB3945-MEqNC12sBsHxa7XIdbXXog@public.gmane.org>
2005-10-18 20:23 ` Andrew Grover
2005-10-13 17:15 Moore, Robert
2005-10-18 20:31 Moore, Robert
[not found] ` <971FCB6690CD0E4898387DBF7552B90E031CC3AC-sBd4vmA9Se5Qxe9IK+vIArfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2005-10-19 3:38 ` Andrew Grover
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=43200F57.9040000@suse.de \
--to=trenn-l3a5bk7wagm@public.gmane.org \
--cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox