summaryrefslogtreecommitdiff
path: root/documents
diff options
context:
space:
mode:
authorKurt Jaeger <github@opsec.eu>2020-01-08 22:34:30 +0100
committerKurt Jaeger <github@opsec.eu>2020-01-08 22:34:30 +0100
commit2bd460a95e7cc3145f3e0401bee5a476a3445d3e (patch)
treed79c60769ff079a90b396f2b25aa1a03903bb228 /documents
parent5d7649439070a33783a3f248e0e199de8f2a40a4 (diff)
downloadacpica-2bd460a95e7cc3145f3e0401bee5a476a3445d3e.tar.gz
re-format long lines of latest entry
Diffstat (limited to 'documents')
-rw-r--r--documents/changes.txt20
1 files changed, 15 insertions, 5 deletions
diff --git a/documents/changes.txt b/documents/changes.txt
index c4c281382..87cea53da 100644
--- a/documents/changes.txt
+++ b/documents/changes.txt
@@ -4,19 +4,29 @@
1) ACPICA kernel-resident subsystem:
-Return a Buffer object for all fields created via the CreateField operator. Previously, an Integer would be returned if the size of the field was less than or equal to the current size of an Integer. Although this goes against the ACPI specification, it provides compatibility with other ACPI implementations. Also updated the ASLTS test suite to reflect this new behavior.
+Return a Buffer object for all fields created via the CreateField
+operator. Previously, an Integer would be returned if the size of
+the field was less than or equal to the current size of an Integer.
+Although this goes against the ACPI specification, it provides
+compatibility with other ACPI implementations. Also updated the
+ASLTS test suite to reflect this new behavior.
2) iASL Compiler/Disassembler and ACPICA tools:
-iASL: Implemented detection of (and throw an error for) duplicate values for Case statements within a single Switch statement. Duplicate Integers, Strings, and Buffers are supported.
+iASL: Implemented detection of (and throw an error for) duplicate
+values for Case statements within a single Switch statement. Duplicate
+Integers, Strings, and Buffers are supported.
-iASL: Fix error logging issue during multiple file compilation -- Switch to the correct input file during error node creation.
+iASL: Fix error logging issue during multiple file compilation --
+Switch to the correct input file during error node creation.
-iASL: For duplicate named object creation, now emit an error instead of a warning - since this will cause a runtime error.
+iASL: For duplicate named object creation, now emit an error instead
+of a warning - since this will cause a runtime error.
AcpiSrc: Add unix line-ending support for non-Windows builds.
-iASL: Add an error condition for an attempt to create a NameString with > 255 NameSegs (the max allowable via the AML definition).
+iASL: Add an error condition for an attempt to create a NameString
+with > 255 NameSegs (the max allowable via the AML definition).
----------------------------------------