diff options
author | Erik Schmauss <erik.schmauss@intel.com> | 2018-02-16 12:37:39 -0800 |
---|---|---|
committer | Erik Schmauss <erik.schmauss@intel.com> | 2018-02-16 12:37:39 -0800 |
commit | 671b9476f6d7080db213a9e1d4cfd7ebbc593e3c (patch) | |
tree | d552e6e7099e2df844b5645caf22df72c353ba78 /tests/aslts/src/runtime/collections/bdemo/ACPICA/0124 | |
parent | 849cebb125fee88917d5c699f2d2b09530ceb2ea (diff) | |
download | acpica-671b9476f6d7080db213a9e1d4cfd7ebbc593e3c.tar.gz |
ASLTS: change CH04 to emit line numbers instead of index
This is done by replacing hardcorded index values with __LINE__ macro
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Diffstat (limited to 'tests/aslts/src/runtime/collections/bdemo/ACPICA/0124')
-rw-r--r-- | tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl index 97a35c3e6..cbb0a5849 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl @@ -46,11 +46,11 @@ /* c) Modulo(Index, 0x100000000) < Size. */ CH03 ("", 0x00, 0x00, 0x2C, 0x00) Store (P000 [0x0000000100000001], Local0) - CH04 ("", 0x01, 0x37, 0x00, 0x2E, 0x00, 0x00) /* AE_AML_PACKAGE_LIMIT */ + CH04 (__METHOD__, 0x01, 0x37, 0x00, __LINE__, 0x00, 0x00) /* AE_AML_PACKAGE_LIMIT */ CH03 ("", 0x00, 0x02, 0x30, 0x00) Store (B000 [0x0000000100000002], Local0) - CH04 ("", 0x01, 0x36, 0x00, 0x32, 0x00, 0x00) /* AE_AML_BUFFER_LIMIT */ + CH04 (__METHOD__, 0x01, 0x36, 0x00, __LINE__, 0x00, 0x00) /* AE_AML_BUFFER_LIMIT */ CH03 ("", 0x00, 0x04, 0x34, 0x00) Store (S000 [0x0000000100000003], Local0) - CH04 ("", 0x01, 0x3D, 0x00, 0x36, 0x00, 0x00) /* AE_AML_STRING_LIMIT */ + CH04 (__METHOD__, 0x01, 0x3D, 0x00, __LINE__, 0x00, 0x00) /* AE_AML_STRING_LIMIT */ } |