diff -Nru acpica-unix-20131115/changes.txt acpica-unix-20140114/changes.txt --- acpica-unix-20131115/changes.txt 2013-12-04 12:26:18.000000000 +0000 +++ acpica-unix-20140114/changes.txt 2014-01-28 13:06:26.000000000 +0000 @@ -1,4 +1,182 @@ ---------------------------------------- +14 January 2014. Summary of changes for version 20140114: + +1) ACPICA kernel-resident subsystem: + +Updated all ACPICA copyrights and signons to 2014. Added the 2014 +copyright to all module headers and signons, including the standard Linux +header. This affects virtually every file in the ACPICA core subsystem, +iASL compiler, all ACPICA utilities, and the test suites. + +Improved parameter validation for AcpiInstallGpeBlock. Added the +following checks: +1) The incoming device handle refers to type ACPI_TYPE_DEVICE. +2) There is not already a GPE block attached to the device. +Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a +device. + +Correctly support "references" in the ACPI_OBJECT. This change fixes the +support to allow references (namespace nodes) to be passed as arguments +to control methods via the evaluate object interface. This is probably +most useful for testing purposes, however. + +Improved support for 32/64 bit physical addresses in printf()-like +output. This change improves the support for physical addresses in printf +debug statements and other output on both 32-bit and 64-bit hosts. It +consistently outputs the appropriate number of bytes for each host. The +%p specifier is unsatisfactory since it does not emit uniform output on +all hosts/clib implementations (on some, leading zeros are not supported, +leading to difficult-to-read output). + +Example Code and Data Size: These are the sizes for the OS-independent +acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The +debug version of the code includes the debug output trace mechanism and +has a much larger code and data size. + + Current Release: + Non-Debug Version: 96.2K Code, 27.0K Data, 123.2K Total + Debug Version: 187.5K Code, 78.3K Data, 265.8K Total + Previous Release: + Non-Debug Version: 96.1K Code, 27.0K Data, 123.1K Total + Debug Version: 185.6K Code, 77.3K Data, 262.9K Total + + +2) iASL Compiler/Disassembler and Tools: + +iASL: Fix a possible fault when using the Connection() operator. Fixes a +problem if the parent Field definition for the Connection operator refers +to an operation region that does not exist. ACPICA BZ 1064. + +AcpiExec: Load of local test tables is now optional. The utility has the +capability to load some various tables to test features of ACPICA. +However, there are enough of them that the output of the utility became +confusing. With this change, only the required local tables are displayed +(RSDP, XSDT, etc.) along with the actual tables loaded via the command +line specification. This makes the default output simler and easier to +understand. The -el command line option restores the original behavior +for testing purposes. + +AcpiExec: Added support for overlapping operation regions. This change +expands the simulation of operation regions by supporting regions that +overlap within the given address space. Supports SystemMemory and +SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031. + +AcpiExec: Added region handler support for PCI_Config and EC spaces. This +allows AcpiExec to simulate these address spaces, similar to the current +support for SystemMemory and SystemIO. + +Debugger: Added new command to read/write/compare all namespace objects. +The command "test objects" will exercise the entire namespace by writing +new values to each data object, and ensuring that the write was +successful. The original value is then restored and verified. + +Debugger: Added the "test predefined" command. This change makes this +test public and puts it under the new "test" command. The test executes +each and every predefined name within the current namespace. + +---------------------------------------- +18 December 2013. Summary of changes for version 20131218: + +Global note: The ACPI 5.0A specification was released this month. There +are no changes needed for ACPICA since this release of ACPI is an +errata/clarification release. The specification is available at +acpi.info. + + +1) ACPICA kernel-resident subsystem: + +Added validation of the XSDT root table if it is present. Some older +platforms contain an XSDT that is ill-formed or otherwise invalid (such +as containing some or all entries that are NULL pointers). This change +adds a new function to validate the XSDT before actually using it. If the +XSDT is found to be invalid, ACPICA will now automatically fall back to +using the RSDT instead. Original implementation by Zhao Yakui. Ported to +ACPICA and enhanced by Lv Zheng and Bob Moore. + +Added a runtime option to ignore the XSDT and force the use of the RSDT. +This change adds a runtime option that will force ACPICA to use the RSDT +instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec +requires that an XSDT be used instead of the RSDT, the XSDT has been +found to be corrupt or ill-formed on some machines. Lv Zheng. + +Added a runtime option to favor 32-bit FADT register addresses over the +64-bit addresses. This change adds an option to favor 32-bit FADT +addresses when there is a conflict between the 32-bit and 64-bit versions +of the same register. The default behavior is to use the 64-bit version +in accordance with the ACPI specification. This can now be overridden via +the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng. + +During the change above, the internal "Convert FADT" and "Verify FADT" +functions have been merged to simplify the code, making it easier to +understand and maintain. ACPICA BZ 933. + +Improve exception reporting and handling for GPE block installation. +Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the +status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019. + +Added helper macros to extract bus/segment numbers from the HEST table. +This change adds two macros to extract the encoded bus and segment +numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. +Betty Dall + +Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used +by ACPICA. It is not a public macro, so it should have no effect on +existing OSV code. Lv Zheng. + +Example Code and Data Size: These are the sizes for the OS-independent +acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The +debug version of the code includes the debug output trace mechanism and +has a much larger code and data size. + + Current Release: + Non-Debug Version: 96.1K Code, 27.0K Data, 123.1K Total + Debug Version: 185.6K Code, 77.3K Data, 262.9K Total + Previous Release: + Non-Debug Version: 95.9K Code, 27.0K Data, 122.9K Total + Debug Version: 185.1K Code, 77.2K Data, 262.3K Total + + +2) iASL Compiler/Disassembler and Tools: + +Disassembler: Improved pathname support for emitted External() +statements. This change adds full pathname support for external names +that have been resolved internally by the inclusion of additional ACPI +tables (via the iASL -e option). Without this change, the disassembler +can emit multiple externals for the same object, or it become confused +when the Scope() operator is used on an external object. Overall, greatly +improves the ability to actually recompile the emitted ASL code when +objects a referenced across multiple ACPI tables. Reported by Michael +Tsirkin (mst@redhat.com). + +Tests/ASLTS: Updated functional control suite to execute with no errors. +David Box. Fixed several errors related to the testing of the interpreter +slack mode. Lv Zheng. + +iASL: Added support to detect names that are declared within a control +method, but are unused (these are temporary names that are only valid +during the time the method is executing). A remark is issued for these +cases. ACPICA BZ 1022. + +iASL: Added full support for the DBG2 table. Adds full disassembler, +table compiler, and template generator support for the DBG2 table (Debug +Port 2 table). + +iASL: Added full support for the PCCT table, update the table definition. +Updates the PCCT table definition in the actbl3.h header and adds table +compiler and template generator support. + +iASL: Added an option to emit only error messages (no warnings/remarks). +The -ve option will enable only error messages, warnings and remarks are +suppressed. This can simplify debugging when only the errors are +important, such as when an ACPI table is disassembled and there are many +warnings and remarks -- but only the actual errors are of real interest. + +Example ACPICA code (source/tools/examples): Updated the example code so +that it builds to an actual working program, not just example code. Added +ACPI tables and execution of an example control method in the DSDT. Added +makefile support for Unix generation. + +---------------------------------------- 15 November 2013. Summary of changes for version 20131115: This release is available at https://acpica.org/downloads diff -Nru acpica-unix-20131115/debian/acpica-tools.postinst acpica-unix-20140114/debian/acpica-tools.postinst --- acpica-unix-20131115/debian/acpica-tools.postinst 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/debian/acpica-tools.postinst 2014-01-28 13:06:26.000000000 +0000 @@ -2,7 +2,7 @@ set -e BINDIR=/usr/bin -MANDIR=/usr/share/man/man1 +MANDIR=/usr/share/man case $1 in configure) update-alternatives --install $BINDIR/acpixtract acpixtract \ diff -Nru acpica-unix-20131115/debian/badcode.asl.result acpica-unix-20140114/debian/badcode.asl.result --- acpica-unix-20131115/debian/badcode.asl.result 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/debian/badcode.asl.result 2014-01-28 13:06:26.000000000 +0000 @@ -38,6 +38,9 @@ Error 6058 - Invalid type ^ ([Mutex|Reference] found, Subtract operator requires [Integer|String|Buffer]) badcode.asl 80: CreateField (BUF1, 0, Subtract (4, 4), FLD1) +Remark 2089 - Object is not referenced ^ (Name is within method [MTH1]) + +badcode.asl 80: CreateField (BUF1, 0, Subtract (4, 4), FLD1) Error 6083 - Operand evaluates to zero ^ badcode.asl 84: Acquire (MTX1, 100) @@ -190,32 +193,53 @@ badcode.asl 388: CreateWordField (RSC3, \DWI1._LEN, LEN) Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 32 bits, Field: 16 bits) +badcode.asl 388: CreateWordField (RSC3, \DWI1._LEN, LEN) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 389: CreateByteField (RSC3, \DWI1._MIN, MIN) Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 32 bits, Field: 8 bits) +badcode.asl 389: CreateByteField (RSC3, \DWI1._MIN, MIN) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 390: CreateBitField (RSC3, \DWI1._RNG, RNG1) Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 2 bits, Field: 1 bit) +badcode.asl 390: CreateBitField (RSC3, \DWI1._RNG, RNG1) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 394: CreateQWordField (RSC3, \DWI1._MAX, MAX) Warning 3129 - ResourceTag smaller than Field ^ (Size mismatch, Tag: 32 bits, Field: 64 bits) +badcode.asl 394: CreateQWordField (RSC3, \DWI1._MAX, MAX) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 395: CreateBitField (RSC3, \DWI1._GRA, GRA) Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 32 bits, Field: 1 bit) +badcode.asl 395: CreateBitField (RSC3, \DWI1._GRA, GRA) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 396: CreateField (RSC3, \DWI1._MIF, 5, MIF) Warning 3129 - ResourceTag smaller than Field ^ (Size mismatch, Tag: 1 bit, Field: 5 bits) +badcode.asl 396: CreateField (RSC3, \DWI1._MIF, 5, MIF) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + badcode.asl 397: CreateField (RSC3, \DWI1._RNG, 3, RNG2) Warning 3129 - ResourceTag smaller than Field ^ (Size mismatch, Tag: 2 bits, Field: 3 bits) +badcode.asl 397: CreateField (RSC3, \DWI1._RNG, 3, RNG2) +Remark 2089 - Object is not referenced ^ (Name is within method [REM1]) + Intel ACPI Component Architecture ASL Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX] -Copyright (c) 2000 - 2013 Intel Corporation +Copyright (c) 2000 - 2014 Intel Corporation Ignoring all errors, forcing AML file generation ASL Input: badcode.asl - 401 lines, 6935 bytes, 79 keywords AML Output: badcode.aml - 1184 bytes, 60 named objects, 19 executable opcodes -Compilation complete. 46 Errors, 21 Warnings, 3 Remarks, 16 Optimizations +Compilation complete. 46 Errors, 21 Warnings, 11 Remarks, 16 Optimizations diff -Nru acpica-unix-20131115/debian/changelog acpica-unix-20140114/debian/changelog --- acpica-unix-20131115/debian/changelog 2013-12-04 12:35:20.000000000 +0000 +++ acpica-unix-20140114/debian/changelog 2014-01-28 13:06:26.000000000 +0000 @@ -1,12 +1,38 @@ -acpica-unix (20131115-1linaro1) precise; urgency=low +acpica-unix (20140114-1) unstable; urgency=medium - * Disable tests for PPA. + * Upgrade to latest upstream. + * Remove temporary patch for forgotten Makefile. + * Add patch to fix aapits test suite Makefile. - -- Fathi Boudra Wed, 04 Dec 2013 14:34:04 +0200 + -- Al Stone Thu, 23 Jan 2014 16:10:00 -0700 + +acpica-unix (20131218-1) unstable; urgency=medium + + * Upgrade to latest upstream. + * Update Standards-Version. + * Ack of NMU. + * Closes: #714425 -- new acpidump is as compatible as upstream can be + * Closes: #731760 -- remove extraneous "/man1" from postinst script + * Closes: #700169 -- include proper license in upstream tarball (I + believe this has been fixed for awhile but please reopen if needed) + * Closes: #707584 -- iasl output format changes will be handled on + the seabios side, not in iasl + * Add temporary patch since upstream forgot a Makefile in the tarball. + + -- Al Stone Mon, 06 Jan 2014 19:16:09 -0700 + +acpica-unix (20131115-1.1) unstable; urgency=medium + + * Non-maintainer upload. Closes: #696211. + * Add cross-compilation support. + * Use dpkg-buildflags for hardening support. + * Disable the test suite when DEB_BUILD_OPTIONS=nocheck is set. + + -- Steve Langasek Tue, 10 Dec 2013 06:39:51 +0000 acpica-unix (20131115-1) unstable; urgency=low - * Update to latest upstream. + * Update to latest upstream. -- Al Stone Mon, 25 Nov 2013 15:31:42 -0700 diff -Nru acpica-unix-20131115/debian/control acpica-unix-20140114/debian/control --- acpica-unix-20131115/debian/control 2013-12-04 12:33:51.000000000 +0000 +++ acpica-unix-20140114/debian/control 2014-01-28 13:06:26.000000000 +0000 @@ -4,13 +4,13 @@ Maintainer: Mattia Dongili Uploaders: Al Stone Build-Depends: debhelper (>= 9.0), flex, bison -Standards-Version: 3.9.4 +Standards-Version: 3.9.5 Vcs-Git: git://github.com/acpica-unix.git Vcs-Browser: https://github.com/acpica/acpica.git Homepage: http://www.acpica.org Package: acpica-tools -Architecture: amd64 i386 armhf +Architecture: any Replaces: iasl (<< 20130214-0.1), acpidump (<< 20100513-4) Breaks: iasl (<< 20130214-0.1), acpidump (<< 20100513-4) Provides: iasl, acpidump diff -Nru acpica-unix-20131115/debian/grammar.asl.result acpica-unix-20140114/debian/grammar.asl.result --- acpica-unix-20131115/debian/grammar.asl.result 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/debian/grammar.asl.result 2014-01-28 13:06:26.000000000 +0000 @@ -1,6 +1,24 @@ grammar.asl 199: Name (_NPK, Package () Warning 3133 - ^ Unknown reserved name (_NPK) +grammar.asl 389: Register (SystemIO, 0x08, 0x00, 0x00000000000000B2, , R000) +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 389: Register (SystemIO, 0x08, 0x00, 0x00000000000000B2, , R000) +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 389: Register (SystemIO, 0x08, 0x00, 0x00000000000000B2, , R000) +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 389: Register (SystemIO, 0x08, 0x00, 0x00000000000000B2, , R000) +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 399: CreateByteField (PRT0, R000._ASZ, RSIZ) +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 513: Name (_STR, Unicode ("test")) +Remark 2089 - ^ Object is not referenced (Name is within method [TCOP]) + grammar.asl 522: NAME (ESC1, "abcdefg\x00hijklmn") Warning 3055 - ^ Invalid Hex/Octal Escape - Non-ASCII or NULL @@ -10,12 +28,45 @@ grammar.asl 620: RCIV (Subtract (Arg0, 1)) Remark 2098 - ^ Recursive method call (RCIV) +grammar.asl 701: CreateField (\_SB_.SBUF, 148, 96, FLDV) +Remark 2089 - Object is not referenced ^ (Name is within method [_INI]) + +grammar.asl 715: MinFixed, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 716: MaxFixed, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 717: SubDecode, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 718: 0x0000, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 720: 0xfff2, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 721: 0x0032, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + +grammar.asl 722: 0x0002,,, +Remark 2089 - Object is not referenced ^ (Name is within method [_CRS]) + grammar.asl 733: Method(_SRS) Warning 3102 - ^ Reserved method has too few arguments (_SRS requires 1) grammar.asl 949: Method (_ERR, 2) Warning 3102 - ^ Reserved method has too few arguments (_ERR requires 3) +grammar.asl 1295: Name(BUFR, Buffer (Local0) {}) +Remark 2089 - ^ Object is not referenced (Name is within method [OBJ1]) + +grammar.asl 1302: Alias (MTX1, MTX2) +Remark 2089 - Object is not referenced ^ (Name is within method [OBJ1]) + +grammar.asl 1324: CreateField (BUF2, 148, 96, FLD3) +Remark 2089 - Object is not referenced ^ (Name is within method [FLDS]) + grammar.asl 1389: Store (0x1234567887654321, QWD2) Warning 3038 - ^ 64-bit integer in 32-bit table, truncating (DSDT version < 2) @@ -25,6 +76,9 @@ grammar.asl 1471: SizeOf (BUFO) Error 6114 - ^ Result is not used, operator has no effect +grammar.asl 1491: Alias (MTX2, MTXA) +Remark 2089 - Object is not referenced ^ (Name is within method [OBJ2]) + grammar.asl 1497: Acquire (MTX2, 1) Warning 3130 - ^ Result is not used, possible operator timeout will be missed @@ -52,17 +106,29 @@ grammar.asl 6900: Name (_HID, "*PNP0C0A") Error 6061 - Invalid leading asterisk ^ (*PNP0C0A) +grammar.asl 7754: CreateDWordField (TMD0, 4, DMA0) +Remark 2089 - Object is not referenced ^ (Name is within method [TEST]) + +grammar.asl 7755: CreateDWordField (TMD0, 8, PIO1) +Remark 2089 - Object is not referenced ^ (Name is within method [TEST]) + +grammar.asl 7756: CreateDWordField (TMD0, 12, DMA1) +Remark 2089 - Object is not referenced ^ (Name is within method [TEST]) + +grammar.asl 7757: CreateDWordField (TMD0, 16, CHNF) +Remark 2089 - Object is not referenced ^ (Name is within method [TEST]) + grammar.asl 8717: Name (PKG2, Package (4) Remark 2063 - ^ Initializer list shorter than declared package length Intel ACPI Component Architecture ASL Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX] -Copyright (c) 2000 - 2013 Intel Corporation +Copyright (c) 2000 - 2014 Intel Corporation Ignoring all errors, forcing AML file generation ASL Input: grammar.asl - 10281 lines, 228124 bytes, 4818 keywords AML Output: grammar.aml - 43476 bytes, 670 named objects, 4148 executable opcodes -Compilation complete. 6 Errors, 10 Warnings, 3 Remarks, 1105 Optimizations +Compilation complete. 6 Errors, 10 Warnings, 25 Remarks, 1105 Optimizations diff -Nru acpica-unix-20131115/debian/patches/aapits-ld.patch acpica-unix-20140114/debian/patches/aapits-ld.patch --- acpica-unix-20131115/debian/patches/aapits-ld.patch 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/debian/patches/aapits-ld.patch 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,12 @@ +diff -urN acpica-unix-20140114/tests/aapits/Makefile acpica-unix-20140114.patch/tests/aapits/Makefile +--- acpica-unix-20140114/tests/aapits/Makefile 2014-01-14 15:02:45.000000000 -0700 ++++ acpica-unix-20140114.patch/tests/aapits/Makefile 2014-01-23 16:07:50.124972105 -0700 +@@ -29,6 +29,7 @@ + ../../source/components/debugger/dbmethod.c \ + ../../source/components/debugger/dbnames.c \ + ../../source/components/debugger/dbstats.c \ ++ ../../source/components/debugger/dbtest.c \ + ../../source/components/debugger/dbutils.c \ + ../../source/components/debugger/dbxface.c \ + ../../source/components/disassembler/dmbuffer.c \ + diff -Nru acpica-unix-20131115/debian/patches/add-testing.patch acpica-unix-20140114/debian/patches/add-testing.patch --- acpica-unix-20131115/debian/patches/add-testing.patch 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/debian/patches/add-testing.patch 2014-01-28 13:06:26.000000000 +0000 @@ -15,7 +15,7 @@ + $(CURDIR)/debian/run-aapits.sh $(CURDIR)/tests/aapits $(CURDIR)/generate/unix/bin + + # misc tests -+ $(CURDIR)/debian/run-misc-tests.sh $(CURDIR) 20131115 ++ $(CURDIR)/debian/run-misc-tests.sh $(CURDIR) 20140114 + + # Template tests + cd $(CURDIR)/tests/templates diff -Nru acpica-unix-20131115/debian/patches/series acpica-unix-20140114/debian/patches/series --- acpica-unix-20131115/debian/patches/series 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/debian/patches/series 2014-01-28 13:06:26.000000000 +0000 @@ -5,3 +5,4 @@ add-testing.patch name-miscompare.patch aapits-linux.patch +aapits-ld.patch diff -Nru acpica-unix-20131115/debian/rules acpica-unix-20140114/debian/rules --- acpica-unix-20131115/debian/rules 2013-12-04 12:32:29.000000000 +0000 +++ acpica-unix-20140114/debian/rules 2014-01-28 13:08:45.000000000 +0000 @@ -9,15 +9,19 @@ # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 -CFLAGS = -Wall -g +CFLAGS = $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) -Wall -fno-strict-aliasing + DESTDIR ?= debian/acpica-tools -VERSION = 20131115 +VERSION = 20140114 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) + CC = $(DEB_HOST_GNU_TYPE)-gcc else - CFLAGS += -O2 -fno-strict-aliasing + CC = gcc endif @@ -68,3 +72,6 @@ #ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) # $(MAKE) -C $(CURDIR) check CC=$(CC) OPT_CFLAGS="$(CFLAGS)" #endif + +override_dh_auto_build: + dh_auto_build -- OPT_CFLAGS="$(CFLAGS)" CC=$(CC) diff -Nru acpica-unix-20131115/generate/release/build.sh acpica-unix-20140114/generate/release/build.sh --- acpica-unix-20131115/generate/release/build.sh 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/generate/release/build.sh 2014-01-28 13:06:26.000000000 +0000 @@ -95,9 +95,9 @@ # Convert all CR/LF pairs to Unix format (LF only) # cd $TEMP_DIR - echo Starting CR/LF to LF Conversion - find . -name "*" | xargs $DOS2UNIX - echo Completed CR/LF to LF Conversion + echo "Starting CR/LF to LF (UNIX) full source conversion" + find . -name "*" | xargs $DOS2UNIX -q + echo "Completed CR/LF to LF (UNIX) full source conversion" cd .. } @@ -108,9 +108,9 @@ # Note: Checks shell scripts only (*.sh) # cd $TEMP_DIR - echo Starting LF to CR/LF Conversion - find . -name "*.sh" | xargs $UNIX2DOS - echo Completed LF to CR/LF Conversion + echo "Starting LF to CR/LF (DOS) script conversion" + find . -name "*.sh" | xargs $UNIX2DOS -q + echo "Completed LF to CR/LF (DOS) script conversion" cd .. } @@ -158,7 +158,7 @@ # cd $TEMP_DIR rm -r -f ../$TARGET_DIR/$PACKAGE_FILENAME - $ZIP_UTILITY -add -max -dir -sort=name ../$TARGET_DIR/$PACKAGE_FILENAME + $ZIP_UTILITY -silent -add -max -dir -sort=name ../$TARGET_DIR/$PACKAGE_FILENAME cd .. } @@ -214,6 +214,7 @@ mkdir $TEMP_DIR/generate/unix mkdir $TEMP_DIR/generate/unix/acpibin mkdir $TEMP_DIR/generate/unix/acpidump + mkdir $TEMP_DIR/generate/unix/acpiexamples mkdir $TEMP_DIR/generate/unix/acpiexec mkdir $TEMP_DIR/generate/unix/acpihelp mkdir $TEMP_DIR/generate/unix/acpinames @@ -260,6 +261,7 @@ cp generate/unix/Makefile* $TEMP_DIR/generate/unix cp generate/unix/acpibin/Makefile $TEMP_DIR/generate/unix/acpibin cp generate/unix/acpidump/Makefile $TEMP_DIR/generate/unix/acpidump + cp generate/unix/acpiexamples/Makefile $TEMP_DIR/generate/unix/acpiexamples cp generate/unix/acpiexec/Makefile $TEMP_DIR/generate/unix/acpiexec cp generate/unix/acpihelp/Makefile $TEMP_DIR/generate/unix/acpihelp cp generate/unix/acpinames/Makefile $TEMP_DIR/generate/unix/acpinames diff -Nru acpica-unix-20131115/generate/unix/Makefile.config acpica-unix-20140114/generate/unix/Makefile.config --- acpica-unix-20131115/generate/unix/Makefile.config 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/generate/unix/Makefile.config 2014-01-28 13:06:26.000000000 +0000 @@ -33,7 +33,7 @@ # not be necessary to change it. # .SUFFIXES : -PROGS = acpibin acpidump acpiexec acpihelp acpinames acpisrc acpixtract iasl +PROGS = acpibin acpidump acpiexamples acpiexec acpihelp acpinames acpisrc acpixtract iasl HOST ?= _CYGWIN CC = gcc @@ -102,6 +102,7 @@ # ACPIBIN = $(ACPICA_TOOLS)/acpibin ACPIDUMP = $(ACPICA_TOOLS)/acpidump +ACPIEXAMPLES = $(ACPICA_TOOLS)/examples ACPIEXEC = $(ACPICA_TOOLS)/acpiexec ACPIHELP = $(ACPICA_TOOLS)/acpihelp ACPINAMES = $(ACPICA_TOOLS)/acpinames diff -Nru acpica-unix-20131115/generate/unix/acpiexamples/Makefile acpica-unix-20140114/generate/unix/acpiexamples/Makefile --- acpica-unix-20131115/generate/unix/acpiexamples/Makefile 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/generate/unix/acpiexamples/Makefile 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,148 @@ +# +# acpiexamples - Example ACPICA initialization code and control +# method execution. +# + +# +# Note: This makefile is intended to be used from within the native +# ACPICA directory structure, from under generate/unix. It specifically +# places all object files in a generate/unix subdirectory, not within +# the various ACPICA source directories. This prevents collisions +# between different compilations of the same source file with different +# compile options, and prevents pollution of the source code. +# +include ../Makefile.config +FINAL_PROG = ../$(BINDIR)/acpiexamples +PROG = $(OBJDIR)/acpiexamples + +# +# Search paths for source files +# +vpath %.c \ + $(ACPIEXAMPLES)\ + $(ACPICA_DEBUGGER)\ + $(ACPICA_DISPATCHER)\ + $(ACPICA_EXECUTER)\ + $(ACPICA_NAMESPACE)\ + $(ACPICA_PARSER)\ + $(ACPICA_TABLES)\ + $(ACPICA_UTILITIES)\ + $(ACPICA_COMMON)\ + $(ACPICA_OSL) + +HEADERS = \ + $(wildcard $(ACPIEXAMPLES)/*.h) + +OBJECTS = \ + $(OBJDIR)/examples.o\ + $(OBJDIR)/exstubs.o\ + $(OBJDIR)/extables.o\ + $(OBJDIR)/dsargs.o\ + $(OBJDIR)/dscontrol.o\ + $(OBJDIR)/dsfield.o\ + $(OBJDIR)/dsinit.o\ + $(OBJDIR)/dsmethod.o\ + $(OBJDIR)/dsmthdat.o\ + $(OBJDIR)/dsobject.o\ + $(OBJDIR)/dsopcode.o\ + $(OBJDIR)/dsutils.o\ + $(OBJDIR)/dswexec.o\ + $(OBJDIR)/dswload.o\ + $(OBJDIR)/dswload2.o\ + $(OBJDIR)/dswscope.o\ + $(OBJDIR)/dswstate.o\ + $(OBJDIR)/exconfig.o\ + $(OBJDIR)/exconvrt.o\ + $(OBJDIR)/excreate.o\ + $(OBJDIR)/exdebug.o\ + $(OBJDIR)/exdump.o\ + $(OBJDIR)/exfield.o\ + $(OBJDIR)/exfldio.o\ + $(OBJDIR)/exmisc.o\ + $(OBJDIR)/exmutex.o\ + $(OBJDIR)/exnames.o\ + $(OBJDIR)/exoparg1.o\ + $(OBJDIR)/exoparg2.o\ + $(OBJDIR)/exoparg3.o\ + $(OBJDIR)/exoparg6.o\ + $(OBJDIR)/exprep.o\ + $(OBJDIR)/exregion.o\ + $(OBJDIR)/exresnte.o\ + $(OBJDIR)/exresolv.o\ + $(OBJDIR)/exresop.o\ + $(OBJDIR)/exstore.o\ + $(OBJDIR)/exstoren.o\ + $(OBJDIR)/exstorob.o\ + $(OBJDIR)/exsystem.o\ + $(OBJDIR)/exutils.o\ + $(OBJDIR)/nsaccess.o\ + $(OBJDIR)/nsalloc.o\ + $(OBJDIR)/nsconvert.o\ + $(OBJDIR)/nsdump.o\ + $(OBJDIR)/nseval.o\ + $(OBJDIR)/nsinit.o\ + $(OBJDIR)/nsload.o\ + $(OBJDIR)/nsnames.o\ + $(OBJDIR)/nsobject.o\ + $(OBJDIR)/nsparse.o\ + $(OBJDIR)/nssearch.o\ + $(OBJDIR)/nsutils.o\ + $(OBJDIR)/nswalk.o\ + $(OBJDIR)/nsxfeval.o\ + $(OBJDIR)/nsxfname.o\ + $(OBJDIR)/nsxfobj.o\ + $(OBJDIR)/osunixxf.o\ + $(OBJDIR)/psargs.o\ + $(OBJDIR)/psloop.o\ + $(OBJDIR)/psobject.o\ + $(OBJDIR)/psopcode.o\ + $(OBJDIR)/psopinfo.o\ + $(OBJDIR)/psparse.o\ + $(OBJDIR)/psscope.o\ + $(OBJDIR)/pstree.o\ + $(OBJDIR)/psutils.o\ + $(OBJDIR)/pswalk.o\ + $(OBJDIR)/psxface.o\ + $(OBJDIR)/tbfadt.o\ + $(OBJDIR)/tbfind.o\ + $(OBJDIR)/tbinstal.o\ + $(OBJDIR)/tbprint.o\ + $(OBJDIR)/tbutils.o\ + $(OBJDIR)/tbxface.o\ + $(OBJDIR)/tbxfload.o\ + $(OBJDIR)/tbxfroot.o\ + $(OBJDIR)/utaddress.o\ + $(OBJDIR)/utalloc.o\ + $(OBJDIR)/utbuffer.o\ + $(OBJDIR)/utcache.o\ + $(OBJDIR)/utcopy.o\ + $(OBJDIR)/utdebug.o\ + $(OBJDIR)/utdecode.o\ + $(OBJDIR)/utdelete.o\ + $(OBJDIR)/uterror.o\ + $(OBJDIR)/utexcep.o\ + $(OBJDIR)/utglobal.o\ + $(OBJDIR)/utlock.o\ + $(OBJDIR)/utmath.o\ + $(OBJDIR)/utmisc.o\ + $(OBJDIR)/utmutex.o\ + $(OBJDIR)/utobject.o\ + $(OBJDIR)/utosi.o\ + $(OBJDIR)/utownerid.o\ + $(OBJDIR)/utstate.o\ + $(OBJDIR)/utstring.o\ + $(OBJDIR)/utxface.o\ + $(OBJDIR)/utxferror.o\ + $(OBJDIR)/utxfinit.o + +# +# Flags specific to acpinames utility +# +CFLAGS += \ + -DACPI_EXAMPLE_APP\ + -I$(EXAMPLES) + +# +# Common Rules +# +include ../Makefile.rules diff -Nru acpica-unix-20131115/generate/unix/acpiexec/Makefile acpica-unix-20140114/generate/unix/acpiexec/Makefile --- acpica-unix-20131115/generate/unix/acpiexec/Makefile 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/generate/unix/acpiexec/Makefile 2014-01-28 13:06:26.000000000 +0000 @@ -54,6 +54,7 @@ $(OBJDIR)/dbmethod.o\ $(OBJDIR)/dbnames.o\ $(OBJDIR)/dbstats.o\ + $(OBJDIR)/dbtest.o\ $(OBJDIR)/dbutils.o\ $(OBJDIR)/dbxface.o\ $(OBJDIR)/dmbuffer.o\ diff -Nru acpica-unix-20131115/source/common/acgetline.c acpica-unix-20140114/source/common/acgetline.c --- acpica-unix-20131115/source/common/acgetline.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/acgetline.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/common/adfile.c acpica-unix-20140114/source/common/adfile.c --- acpica-unix-20131115/source/common/adfile.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/adfile.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -199,6 +199,7 @@ { char *Position; char *NewFilename; + char *DirectoryPosition; /* @@ -211,8 +212,10 @@ /* Try to find the last dot in the filename */ + DirectoryPosition = strrchr (NewFilename, '/'); Position = strrchr (NewFilename, '.'); - if (Position) + + if (Position && (Position > DirectoryPosition)) { /* Tack on the new suffix */ diff -Nru acpica-unix-20131115/source/common/adisasm.c acpica-unix-20140114/source/common/adisasm.c --- acpica-unix-20131115/source/common/adisasm.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/adisasm.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/common/adwalk.c acpica-unix-20140114/source/common/adwalk.c --- acpica-unix-20131115/source/common/adwalk.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/adwalk.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -469,8 +469,9 @@ !ChildOp->Common.Node) { AcpiNsExternalizeName (ACPI_UINT32_MAX, ChildOp->Common.Value.String, - NULL, &Path); - AcpiOsPrintf ("/* %-16s A-NAMEPATH: %s */\n", Op->Common.AmlOpName, Path); + NULL, &Path); + AcpiOsPrintf ("/* %-16s A-NAMEPATH: %s */\n", + Op->Common.AmlOpName, Path); ACPI_FREE (Path); NextOp = Op->Common.Next; @@ -478,22 +479,26 @@ { /* This NamePath has no args, assume it is an integer */ - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0); return (AE_OK); } ArgCount = AcpiDmInspectPossibleArgs (3, 1, NextOp); - AcpiOsPrintf ("/* A-CHILDREN: %u Actual %u */\n", ArgCount, AcpiDmCountChildren (Op)); + AcpiOsPrintf ("/* A-CHILDREN: %u Actual %u */\n", + ArgCount, AcpiDmCountChildren (Op)); if (ArgCount < 1) { /* One Arg means this is just a Store(Name,Target) */ - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0); return (AE_OK); } - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0); } break; #endif @@ -509,7 +514,8 @@ { /* This NamePath has no args, assume it is an integer */ - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0); return (AE_OK); } @@ -518,11 +524,13 @@ { /* One Arg means this is just a Store(Name,Target) */ - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0); return (AE_OK); } - AcpiDmAddToExternalList (ChildOp, ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount); + AcpiDmAddOpToExternalList (ChildOp, + ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0); } break; @@ -554,7 +562,8 @@ /* And namepath is the first argument */ (ParentOp->Common.Value.Arg == Op)) { - AcpiDmAddToExternalList (Op, Op->Common.Value.String, ACPI_TYPE_INTEGER, 0); + AcpiDmAddOpToExternalList (Op, + Op->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0); break; } } @@ -564,8 +573,8 @@ * operator) - it *must* be a method invocation, nothing else is * grammatically possible. */ - AcpiDmAddToExternalList (Op, Op->Common.Value.String, ACPI_TYPE_METHOD, ArgCount); - + AcpiDmAddOpToExternalList (Op, + Op->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0); } break; @@ -741,6 +750,7 @@ ACPI_NAMESPACE_NODE *Node; ACPI_OPERAND_OBJECT *Object; UINT32 ParamCount = 0; + char *Pathname; WalkState = Info->WalkState; @@ -808,11 +818,14 @@ * The namespace is also used as a lookup table for references to resource * descriptors and the fields within them. */ + Node = NULL; Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE, WalkState, &Node); if (ACPI_SUCCESS (Status) && (Node->Flags & ANOBJ_IS_EXTERNAL)) { + /* Node was created by an External() statement */ + Status = AE_NOT_FOUND; } @@ -830,16 +843,28 @@ if (!(Op->Asl.Parent && (Op->Asl.Parent->Asl.AmlOpcode == AML_COND_REF_OF_OP))) { - AcpiDmAddToExternalList (Op, Path, (UINT8) ObjectType, 0); + if (Node) + { + AcpiDmAddNodeToExternalList (Node, + (UINT8) ObjectType, 0, 0); + } + else + { + AcpiDmAddOpToExternalList (Op, Path, + (UINT8) ObjectType, 0, 0); + } } } } /* - * Found the node in external table, add it to external list - * Node->OwnerId == 0 indicates built-in ACPI Names, _OS_ etc + * Found the node, but check if it came from an external table. + * Add it to external list. Note: Node->OwnerId == 0 indicates + * one of the built-in ACPI Names (_OS_ etc.) which can safely + * be ignored. */ - else if (Node->OwnerId && WalkState->OwnerId != Node->OwnerId) + else if (Node->OwnerId && + (WalkState->OwnerId != Node->OwnerId)) { ObjectType2 = ObjectType; @@ -853,7 +878,16 @@ } } - AcpiDmAddToExternalList (Op, Path, (UINT8) ObjectType2, ParamCount | 0x80); + Pathname = AcpiNsGetExternalPathname (Node); + if (!Pathname) + { + return (AE_NO_MEMORY); + } + + AcpiDmAddNodeToExternalList (Node, (UINT8) ObjectType2, + ParamCount, ACPI_EXT_RESOLVED_REFERENCE); + + ACPI_FREE (Pathname); Op->Common.Node = Node; } else diff -Nru acpica-unix-20131115/source/common/ahpredef.c acpica-unix-20140114/source/common/ahpredef.c --- acpica-unix-20131115/source/common/ahpredef.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/ahpredef.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/common/dmextern.c acpica-unix-20140114/source/common/dmextern.c --- acpica-unix-20131115/source/common/dmextern.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/dmextern.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -104,10 +104,19 @@ char *Path); static void -AcpiDmAddToExternalListFromFile ( +AcpiDmAddPathToExternalList ( char *Path, UINT8 Type, - UINT32 Value); + UINT32 Value, + UINT16 Flags); + +static ACPI_STATUS +AcpiDmCreateNewExternal ( + char *ExternalPath, + char *InternalPath, + UINT8 Type, + UINT32 Value, + UINT16 Flags); /******************************************************************************* @@ -349,196 +358,6 @@ /******************************************************************************* * - * FUNCTION: AcpiDmAddToExternalList - * - * PARAMETERS: Op - Current parser Op - * Path - Internal (AML) path to the object - * Type - ACPI object type to be added - * Value - Arg count if adding a Method object - * - * RETURN: None - * - * DESCRIPTION: Insert a new name into the global list of Externals which - * will in turn be later emitted as an External() declaration - * in the disassembled output. - * - ******************************************************************************/ - -void -AcpiDmAddToExternalList ( - ACPI_PARSE_OBJECT *Op, - char *Path, - UINT8 Type, - UINT32 Value) -{ - char *ExternalPath; - char *Fullpath = NULL; - ACPI_EXTERNAL_LIST *NewExternal; - ACPI_EXTERNAL_LIST *NextExternal; - ACPI_EXTERNAL_LIST *PrevExternal = NULL; - ACPI_STATUS Status; - BOOLEAN Resolved = FALSE; - - - if (!Path) - { - return; - } - - if (Type == ACPI_TYPE_METHOD) - { - if (Value & 0x80) - { - Resolved = TRUE; - } - Value &= 0x07; - } - - /* - * We don't want External() statements to contain a leading '\'. - * This prevents duplicate external statements of the form: - * - * External (\ABCD) - * External (ABCD) - * - * This would cause a compile time error when the disassembled - * output file is recompiled. - */ - if ((*Path == AML_ROOT_PREFIX) && (Path[1])) - { - Path++; - } - - /* Externalize the ACPI pathname */ - - Status = AcpiNsExternalizeName (ACPI_UINT32_MAX, Path, - NULL, &ExternalPath); - if (ACPI_FAILURE (Status)) - { - return; - } - - /* - * Get the full pathname from the root if "Path" has one or more - * parent prefixes (^). Note: path will not contain a leading '\'. - */ - if (*Path == (UINT8) AML_PARENT_PREFIX) - { - Fullpath = AcpiDmNormalizeParentPrefix (Op, ExternalPath); - if (Fullpath) - { - /* Set new external path */ - - ACPI_FREE (ExternalPath); - ExternalPath = Fullpath; - } - } - - /* Check all existing externals to ensure no duplicates */ - - NextExternal = AcpiGbl_ExternalList; - while (NextExternal) - { - if (!ACPI_STRCMP (ExternalPath, NextExternal->Path)) - { - /* Duplicate method, check that the Value (ArgCount) is the same */ - - if ((NextExternal->Type == ACPI_TYPE_METHOD) && - (NextExternal->Value != Value)) - { - ACPI_ERROR ((AE_INFO, - "External method arg count mismatch %s: Current %u, attempted %u", - NextExternal->Path, NextExternal->Value, Value)); - } - - /* Allow upgrade of type from ANY */ - - else if (NextExternal->Type == ACPI_TYPE_ANY) - { - NextExternal->Type = Type; - NextExternal->Value = Value; - } - - ACPI_FREE (ExternalPath); - return; - } - - NextExternal = NextExternal->Next; - } - - /* Allocate and init a new External() descriptor */ - - NewExternal = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EXTERNAL_LIST)); - if (!NewExternal) - { - ACPI_FREE (ExternalPath); - return; - } - - NewExternal->Path = ExternalPath; - NewExternal->Type = Type; - NewExternal->Value = Value; - NewExternal->Resolved = Resolved; - NewExternal->Length = (UINT16) ACPI_STRLEN (ExternalPath); - - /* Was the external path with parent prefix normalized to a fullpath? */ - - if (Fullpath == ExternalPath) - { - /* Get new internal path */ - - Status = AcpiNsInternalizeName (ExternalPath, &Path); - if (ACPI_FAILURE (Status)) - { - ACPI_FREE (ExternalPath); - ACPI_FREE (NewExternal); - return; - } - - /* Set flag to indicate External->InternalPath need to be freed */ - - NewExternal->Flags |= ACPI_IPATH_ALLOCATED; - } - - NewExternal->InternalPath = Path; - - /* Link the new descriptor into the global list, alphabetically ordered */ - - NextExternal = AcpiGbl_ExternalList; - while (NextExternal) - { - if (AcpiUtStricmp (NewExternal->Path, NextExternal->Path) < 0) - { - if (PrevExternal) - { - PrevExternal->Next = NewExternal; - } - else - { - AcpiGbl_ExternalList = NewExternal; - } - - NewExternal->Next = NextExternal; - return; - } - - PrevExternal = NextExternal; - NextExternal = NextExternal->Next; - } - - if (PrevExternal) - { - PrevExternal->Next = NewExternal; - } - else - { - AcpiGbl_ExternalList = NewExternal; - } -} - - -/******************************************************************************* - * * FUNCTION: AcpiDmGetExternalsFromFile * * PARAMETERS: None @@ -619,7 +438,8 @@ AcpiOsPrintf ("%s: Importing method external (%u arguments) %s\n", Gbl_ExternalRefFilename, ArgCount, MethodName); - AcpiDmAddToExternalListFromFile (MethodName, ACPI_TYPE_METHOD, ArgCount | 0x80); + AcpiDmAddPathToExternalList (MethodName, ACPI_TYPE_METHOD, + ArgCount, (ACPI_EXT_RESOLVED_REFERENCE | ACPI_EXT_ORIGIN_FROM_FILE)); ImportCount++; } @@ -644,11 +464,13 @@ /******************************************************************************* * - * FUNCTION: AcpiDmAddToExternalListFromFile + * FUNCTION: AcpiDmAddOpToExternalList * - * PARAMETERS: Path - Internal (AML) path to the object + * PARAMETERS: Op - Current parser Op + * Path - Internal (AML) path to the object * Type - ACPI object type to be added * Value - Arg count if adding a Method object + * Flags - To be passed to the external object * * RETURN: None * @@ -656,60 +478,315 @@ * will in turn be later emitted as an External() declaration * in the disassembled output. * + * This function handles the most common case where the referenced + * name is simply not found in the constructed namespace. + * ******************************************************************************/ -static void -AcpiDmAddToExternalListFromFile ( +void +AcpiDmAddOpToExternalList ( + ACPI_PARSE_OBJECT *Op, char *Path, UINT8 Type, - UINT32 Value) + UINT32 Value, + UINT16 Flags) { - char *InternalPath; char *ExternalPath; - ACPI_EXTERNAL_LIST *NewExternal; - ACPI_EXTERNAL_LIST *NextExternal; - ACPI_EXTERNAL_LIST *PrevExternal = NULL; + char *InternalPath = Path; + char *Temp; ACPI_STATUS Status; - BOOLEAN Resolved = FALSE; + + + ACPI_FUNCTION_TRACE (DmAddOpToExternalList); if (!Path) { - return; + return_VOID; } - /* TBD: Add a flags parameter */ + /* Remove a root backslash if present */ - if (Type == ACPI_TYPE_METHOD) + if ((*Path == AML_ROOT_PREFIX) && (Path[1])) { - if (Value & 0x80) - { - Resolved = TRUE; - } - Value &= 0x07; + Path++; + } + + /* Externalize the pathname */ + + Status = AcpiNsExternalizeName (ACPI_UINT32_MAX, Path, + NULL, &ExternalPath); + if (ACPI_FAILURE (Status)) + { + return_VOID; } /* - * We don't want External() statements to contain a leading '\'. - * This prevents duplicate external statements of the form: - * - * External (\ABCD) - * External (ABCD) - * - * This would cause a compile time error when the disassembled - * output file is recompiled. + * Get the full pathname from the root if "Path" has one or more + * parent prefixes (^). Note: path will not contain a leading '\'. */ + if (*Path == (UINT8) AML_PARENT_PREFIX) + { + Temp = AcpiDmNormalizeParentPrefix (Op, ExternalPath); + + /* Set new external path */ + + ACPI_FREE (ExternalPath); + ExternalPath = Temp; + if (!Temp) + { + return_VOID; + } + + /* Create the new internal pathname */ + + Flags |= ACPI_EXT_INTERNAL_PATH_ALLOCATED; + Status = AcpiNsInternalizeName (ExternalPath, &InternalPath); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (ExternalPath); + return_VOID; + } + } + + /* Create the new External() declaration node */ + + Status = AcpiDmCreateNewExternal (ExternalPath, InternalPath, + Type, Value, Flags); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (ExternalPath); + if (Flags & ACPI_EXT_INTERNAL_PATH_ALLOCATED) + { + ACPI_FREE (InternalPath); + } + } + + return_VOID; +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDmAddNodeToExternalList + * + * PARAMETERS: Node - Namespace node for object to be added + * Type - ACPI object type to be added + * Value - Arg count if adding a Method object + * Flags - To be passed to the external object + * + * RETURN: None + * + * DESCRIPTION: Insert a new name into the global list of Externals which + * will in turn be later emitted as an External() declaration + * in the disassembled output. + * + * This function handles the case where the referenced name has + * been found in the namespace, but the name originated in a + * table other than the one that is being disassembled (such + * as a table that is added via the iASL -e option). + * + ******************************************************************************/ + +void +AcpiDmAddNodeToExternalList ( + ACPI_NAMESPACE_NODE *Node, + UINT8 Type, + UINT32 Value, + UINT16 Flags) +{ + char *ExternalPath; + char *InternalPath; + char *Temp; + ACPI_STATUS Status; + + + ACPI_FUNCTION_TRACE (DmAddNodeToExternalList); + + + if (!Node) + { + return_VOID; + } + + /* Get the full external and internal pathnames to the node */ + + ExternalPath = AcpiNsGetExternalPathname (Node); + if (!ExternalPath) + { + return_VOID; + } + + Status = AcpiNsInternalizeName (ExternalPath, &InternalPath); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (ExternalPath); + return_VOID; + } + + /* Remove the root backslash */ + + if ((*ExternalPath == AML_ROOT_PREFIX) && (ExternalPath[1])) + { + Temp = ACPI_ALLOCATE_ZEROED (ACPI_STRLEN (ExternalPath) + 1); + if (!Temp) + { + return_VOID; + } + + ACPI_STRCPY (Temp, &ExternalPath[1]); + ACPI_FREE (ExternalPath); + ExternalPath = Temp; + } + + /* Create the new External() declaration node */ + + Status = AcpiDmCreateNewExternal (ExternalPath, InternalPath, Type, + Value, (Flags | ACPI_EXT_INTERNAL_PATH_ALLOCATED)); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (ExternalPath); + ACPI_FREE (InternalPath); + } + + return_VOID; +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDmAddPathToExternalList + * + * PARAMETERS: Path - External name of the object to be added + * Type - ACPI object type to be added + * Value - Arg count if adding a Method object + * Flags - To be passed to the external object + * + * RETURN: None + * + * DESCRIPTION: Insert a new name into the global list of Externals which + * will in turn be later emitted as an External() declaration + * in the disassembled output. + * + * This function currently is used to add externals via a + * reference file (via the -fe iASL option). + * + ******************************************************************************/ + +static void +AcpiDmAddPathToExternalList ( + char *Path, + UINT8 Type, + UINT32 Value, + UINT16 Flags) +{ + char *InternalPath; + char *ExternalPath; + ACPI_STATUS Status; + + + ACPI_FUNCTION_TRACE (DmAddPathToExternalList); + + + if (!Path) + { + return_VOID; + } + + /* Remove a root backslash if present */ + if ((*Path == AML_ROOT_PREFIX) && (Path[1])) { Path++; } + /* Create the internal and external pathnames */ + + Status = AcpiNsInternalizeName (Path, &InternalPath); + if (ACPI_FAILURE (Status)) + { + return_VOID; + } + + Status = AcpiNsExternalizeName (ACPI_UINT32_MAX, InternalPath, + NULL, &ExternalPath); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (InternalPath); + return_VOID; + } + + /* Create the new External() declaration node */ + + Status = AcpiDmCreateNewExternal (ExternalPath, InternalPath, + Type, Value, (Flags | ACPI_EXT_INTERNAL_PATH_ALLOCATED)); + if (ACPI_FAILURE (Status)) + { + ACPI_FREE (ExternalPath); + ACPI_FREE (InternalPath); + } + + return_VOID; +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDmCreateNewExternal + * + * PARAMETERS: ExternalPath - External path to the object + * InternalPath - Internal (AML) path to the object + * Type - ACPI object type to be added + * Value - Arg count if adding a Method object + * Flags - To be passed to the external object + * + * RETURN: Status + * + * DESCRIPTION: Common low-level function to insert a new name into the global + * list of Externals which will in turn be later emitted as + * External() declarations in the disassembled output. + * + * Note: The external name should not include a root prefix + * (backslash). We do not want External() statements to contain + * a leading '\', as this prevents duplicate external statements + * of the form: + * + * External (\ABCD) + * External (ABCD) + * + * This would cause a compile time error when the disassembled + * output file is recompiled. + * + * There are two cases that are handled here. For both, we emit + * an External() statement: + * 1) The name was simply not found in the namespace. + * 2) The name was found, but it originated in a table other than + * the table that is being disassembled. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDmCreateNewExternal ( + char *ExternalPath, + char *InternalPath, + UINT8 Type, + UINT32 Value, + UINT16 Flags) +{ + ACPI_EXTERNAL_LIST *NewExternal; + ACPI_EXTERNAL_LIST *NextExternal; + ACPI_EXTERNAL_LIST *PrevExternal = NULL; + + + ACPI_FUNCTION_TRACE (DmCreateNewExternal); + + /* Check all existing externals to ensure no duplicates */ NextExternal = AcpiGbl_ExternalList; while (NextExternal) { - if (!ACPI_STRCMP (Path, NextExternal->Path)) + if (!ACPI_STRCMP (ExternalPath, NextExternal->Path)) { /* Duplicate method, check that the Value (ArgCount) is the same */ @@ -717,12 +794,8 @@ (NextExternal->Value != Value)) { ACPI_ERROR ((AE_INFO, - "(File) External method arg count mismatch %s: Current %u, override to %u", + "External method arg count mismatch %s: Current %u, attempted %u", NextExternal->Path, NextExternal->Value, Value)); - - /* Override, since new value came from external reference file */ - - NextExternal->Value = Value; } /* Allow upgrade of type from ANY */ @@ -733,44 +806,31 @@ NextExternal->Value = Value; } - return; + return_ACPI_STATUS (AE_ALREADY_EXISTS); } NextExternal = NextExternal->Next; } - /* Get the internal pathname (AML format) */ - - Status = AcpiNsInternalizeName (Path, &InternalPath); - if (ACPI_FAILURE (Status)) - { - return; - } - /* Allocate and init a new External() descriptor */ NewExternal = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EXTERNAL_LIST)); if (!NewExternal) { - ACPI_FREE (InternalPath); - return; + return_ACPI_STATUS (AE_NO_MEMORY); } - /* Must copy and normalize the input path */ - - AcpiNsExternalizeName (ACPI_UINT32_MAX, InternalPath, NULL, &ExternalPath); + ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, + "Adding external reference node (%s) type [%s]\n", + ExternalPath, AcpiUtGetTypeName (Type))); + NewExternal->Flags = Flags; + NewExternal->Value = Value; NewExternal->Path = ExternalPath; NewExternal->Type = Type; - NewExternal->Value = Value; - NewExternal->Resolved = Resolved; - NewExternal->Length = (UINT16) ACPI_STRLEN (Path); + NewExternal->Length = (UINT16) ACPI_STRLEN (ExternalPath); NewExternal->InternalPath = InternalPath; - /* Set flag to indicate External->InternalPath needs to be freed */ - - NewExternal->Flags |= ACPI_IPATH_ALLOCATED | ACPI_FROM_REFERENCE_FILE; - /* Link the new descriptor into the global list, alphabetically ordered */ NextExternal = AcpiGbl_ExternalList; @@ -788,7 +848,7 @@ } NewExternal->Next = NextExternal; - return; + return_ACPI_STATUS (AE_OK); } PrevExternal = NextExternal; @@ -803,6 +863,8 @@ { AcpiGbl_ExternalList = NewExternal; } + + return_ACPI_STATUS (AE_OK); } @@ -978,7 +1040,7 @@ if (NextExternal->Type == ACPI_TYPE_METHOD) { AcpiGbl_NumExternalMethods++; - if (NextExternal->Resolved) + if (NextExternal->Flags & ACPI_EXT_RESOLVED_REFERENCE) { AcpiGbl_ResolvedExternalMethods++; } @@ -997,7 +1059,7 @@ while (NextExternal) { if ((NextExternal->Type == ACPI_TYPE_METHOD) && - (!NextExternal->Resolved)) + (!(NextExternal->Flags & ACPI_EXT_RESOLVED_REFERENCE))) { AcpiOsPrintf (" External (%s%s", NextExternal->Path, @@ -1008,7 +1070,7 @@ "guessing %u arguments (may be incorrect, see warning above)\n", NextExternal->Value); - NextExternal->Emitted = TRUE; + NextExternal->Flags |= ACPI_EXT_EXTERNAL_EMITTED; } NextExternal = NextExternal->Next; @@ -1029,7 +1091,8 @@ NextExternal = AcpiGbl_ExternalList; while (NextExternal) { - if (!NextExternal->Emitted && (NextExternal->Flags & ACPI_FROM_REFERENCE_FILE)) + if (!(NextExternal->Flags & ACPI_EXT_EXTERNAL_EMITTED) && + (NextExternal->Flags & ACPI_EXT_ORIGIN_FROM_FILE)) { AcpiOsPrintf (" External (%s%s", NextExternal->Path, @@ -1044,7 +1107,7 @@ { AcpiOsPrintf (")\n"); } - NextExternal->Emitted = TRUE; + NextExternal->Flags |= ACPI_EXT_EXTERNAL_EMITTED; } NextExternal = NextExternal->Next; @@ -1058,7 +1121,7 @@ */ while (AcpiGbl_ExternalList) { - if (!AcpiGbl_ExternalList->Emitted) + if (!(AcpiGbl_ExternalList->Flags & ACPI_EXT_EXTERNAL_EMITTED)) { AcpiOsPrintf (" External (%s%s", AcpiGbl_ExternalList->Path, @@ -1080,7 +1143,7 @@ /* Free this external info block and move on to next external */ NextExternal = AcpiGbl_ExternalList->Next; - if (AcpiGbl_ExternalList->Flags & ACPI_IPATH_ALLOCATED) + if (AcpiGbl_ExternalList->Flags & ACPI_EXT_INTERNAL_PATH_ALLOCATED) { ACPI_FREE (AcpiGbl_ExternalList->InternalPath); } diff -Nru acpica-unix-20131115/source/common/dmrestag.c acpica-unix-20140114/source/common/dmrestag.c --- acpica-unix-20131115/source/common/dmrestag.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/dmrestag.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/common/dmtable.c acpica-unix-20140114/source/common/dmtable.c --- acpica-unix-20131115/source/common/dmtable.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/dmtable.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -205,6 +205,12 @@ "Unknown SubTable Type" /* Reserved */ }; +static const char *AcpiDmPcctSubnames[] = +{ + "Generic Communications Subspace", /* ACPI_PCCT_TYPE_GENERIC_SUBSPACE */ + "Unknown SubTable Type" /* Reserved */ +}; + static const char *AcpiDmPmttSubnames[] = { "Socket", /* ACPI_PMTT_TYPE_SOCKET */ @@ -286,7 +292,7 @@ {ACPI_SIG_BOOT, AcpiDmTableInfoBoot, NULL, NULL, TemplateBoot, "Simple Boot Flag Table"}, {ACPI_SIG_CPEP, NULL, AcpiDmDumpCpep, DtCompileCpep, TemplateCpep, "Corrected Platform Error Polling table"}, {ACPI_SIG_CSRT, NULL, AcpiDmDumpCsrt, DtCompileCsrt, TemplateCsrt, "Core System Resource Table"}, - {ACPI_SIG_DBG2, NULL, AcpiDmDumpDbg2, NULL, NULL, "Debug Port table type 2"}, + {ACPI_SIG_DBG2, AcpiDmTableInfoDbg2, AcpiDmDumpDbg2, DtCompileDbg2, TemplateDbg2, "Debug Port table type 2"}, {ACPI_SIG_DBGP, AcpiDmTableInfoDbgp, NULL, NULL, TemplateDbgp, "Debug Port table"}, {ACPI_SIG_DMAR, NULL, AcpiDmDumpDmar, DtCompileDmar, TemplateDmar, "DMA Remapping table"}, {ACPI_SIG_ECDT, AcpiDmTableInfoEcdt, NULL, NULL, TemplateEcdt, "Embedded Controller Boot Resources Table"}, @@ -304,7 +310,7 @@ {ACPI_SIG_MPST, AcpiDmTableInfoMpst, AcpiDmDumpMpst, DtCompileMpst, TemplateMpst, "Memory Power State Table"}, {ACPI_SIG_MSCT, NULL, AcpiDmDumpMsct, DtCompileMsct, TemplateMsct, "Maximum System Characteristics Table"}, {ACPI_SIG_MTMR, NULL, AcpiDmDumpMtmr, DtCompileMtmr, TemplateMtmr, "MID Timer Table"}, - {ACPI_SIG_PCCT, NULL, AcpiDmDumpPcct, NULL, NULL, "Platform Communications Channel Table"}, + {ACPI_SIG_PCCT, AcpiDmTableInfoPcct, AcpiDmDumpPcct, DtCompilePcct, TemplatePcct, "Platform Communications Channel Table"}, {ACPI_SIG_PMTT, NULL, AcpiDmDumpPmtt, DtCompilePmtt, TemplatePmtt, "Platform Memory Topology Table"}, {ACPI_SIG_RSDT, NULL, AcpiDmDumpRsdt, DtCompileRsdt, TemplateRsdt, "Root System Description Table"}, {ACPI_SIG_S3PT, NULL, NULL, NULL, TemplateS3pt, "S3 Performance Table"}, @@ -650,6 +656,7 @@ UINT32 ByteLength; UINT8 Temp8; UINT16 Temp16; + UINT64 Value; ACPI_DMTABLE_DATA *TableData; const char *Name; BOOLEAN LastOutputBlankLine = FALSE; @@ -692,6 +699,7 @@ case ACPI_DMT_ACCWIDTH: case ACPI_DMT_IVRS: case ACPI_DMT_MADT: + case ACPI_DMT_PCCT: case ACPI_DMT_PMTT: case ACPI_DMT_SRAT: case ACPI_DMT_ASF: @@ -863,10 +871,19 @@ * Dump bytes - high byte first, low byte last. * Note: All ACPI tables are little-endian. */ + Value = 0; for (Temp8 = (UINT8) ByteLength; Temp8 > 0; Temp8--) { AcpiOsPrintf ("%2.2X", Target[Temp8 - 1]); + Value |= Target[Temp8 - 1]; + Value <<= 8; + } + + if (!Value && (Info->Flags & DT_DESCRIBES_OPTIONAL)) + { + AcpiOsPrintf (" [Optional field not present]"); } + AcpiOsPrintf ("\n"); break; @@ -1122,6 +1139,19 @@ AcpiOsPrintf (UINT8_FORMAT, *Target, AcpiDmMadtSubnames[Temp8]); break; + case ACPI_DMT_PCCT: + + /* PCCT subtable types */ + + Temp8 = *Target; + if (Temp8 > ACPI_PCCT_TYPE_RESERVED) + { + Temp8 = ACPI_PCCT_TYPE_RESERVED; + } + + AcpiOsPrintf (UINT8_FORMAT, *Target, AcpiDmPcctSubnames[Temp8]); + break; + case ACPI_DMT_PMTT: /* PMTT subtable types */ diff -Nru acpica-unix-20131115/source/common/dmtbdump.c acpica-unix-20140114/source/common/dmtbdump.c --- acpica-unix-20131115/source/common/dmtbdump.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/dmtbdump.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -809,8 +809,11 @@ /* Dump the OemData (optional) */ - AcpiDmDumpBuffer (SubTable, SubTable->OemDataOffset, SubTable->OemDataLength, - Offset + SubTable->OemDataOffset, "OEM Data"); + if (SubTable->OemDataOffset) + { + AcpiDmDumpBuffer (SubTable, SubTable->OemDataOffset, SubTable->OemDataLength, + Offset + SubTable->OemDataOffset, "OEM Data"); + } /* Point to next sub-table */ @@ -1947,11 +1950,31 @@ return; } - /* Sub-tables */ + /* Subtables */ SubTable = ACPI_ADD_PTR (ACPI_PCCT_SUBSPACE, Table, Offset); while (Offset < Table->Length) { + /* Common subtable header */ + + AcpiOsPrintf ("\n"); + Status = AcpiDmDumpTable (Length, Offset, SubTable, + SubTable->Header.Length, AcpiDmTableInfoPcctHdr); + if (ACPI_FAILURE (Status)) + { + return; + } + + /* ACPI 5.0: Only one type of PCCT subtable is supported */ + + if (SubTable->Header.Type != ACPI_PCCT_TYPE_GENERIC_SUBSPACE) + { + AcpiOsPrintf ( + "\n**** Unexpected or unknown PCCT subtable type 0x%X\n\n", + SubTable->Header.Type); + return; + } + AcpiOsPrintf ("\n"); Status = AcpiDmDumpTable (Length, Offset, SubTable, SubTable->Header.Length, AcpiDmTableInfoPcct0); @@ -1960,7 +1983,7 @@ return; } - /* Point to next sub-table */ + /* Point to next subtable */ Offset += SubTable->Header.Length; SubTable = ACPI_ADD_PTR (ACPI_PCCT_SUBSPACE, SubTable, diff -Nru acpica-unix-20131115/source/common/dmtbinfo.c acpica-unix-20140114/source/common/dmtbinfo.c --- acpica-unix-20131115/source/common/dmtbinfo.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/dmtbinfo.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -720,12 +720,12 @@ ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Device[] = { {ACPI_DMT_UINT8, ACPI_DBG20_OFFSET (Revision), "Revision", 0}, - {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (Length), "Length", 0}, + {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (Length), "Length", DT_LENGTH}, {ACPI_DMT_UINT8, ACPI_DBG20_OFFSET (RegisterCount), "Register Count", 0}, {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (NamepathLength), "Namepath Length", 0}, {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (NamepathOffset), "Namepath Offset", 0}, - {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (OemDataLength), "OEM Data Length", 0}, - {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (OemDataOffset), "OEM Data Offset", 0}, + {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (OemDataLength), "OEM Data Length", DT_DESCRIBES_OPTIONAL}, + {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (OemDataOffset), "OEM Data Offset", DT_DESCRIBES_OPTIONAL}, {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (PortType), "Port Type", 0}, {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (PortSubtype), "Port Subtype", 0}, {ACPI_DMT_UINT16, ACPI_DBG20_OFFSET (Reserved), "Reserved", 0}, @@ -754,6 +754,12 @@ ACPI_DMT_TERMINATOR }; +ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2OemData[] = +{ + {ACPI_DMT_BUFFER, 0, "OEM Data", DT_OPTIONAL}, + ACPI_DMT_TERMINATOR +}; + /******************************************************************************* * @@ -1677,25 +1683,32 @@ { {ACPI_DMT_UINT32, ACPI_PCCT_OFFSET (Flags), "Flags (decoded below)", DT_FLAG}, {ACPI_DMT_FLAG0, ACPI_PCCT_FLAG_OFFSET (Flags,0), "Doorbell", 0}, - {ACPI_DMT_UINT32, ACPI_PCCT_OFFSET (Latency), "Command Latency", 0}, - {ACPI_DMT_UINT32, ACPI_PCCT_OFFSET (Reserved), "Reserved", 0}, + {ACPI_DMT_UINT64, ACPI_PCCT_OFFSET (Reserved), "Reserved", 0}, ACPI_DMT_TERMINATOR }; /* PCCT subtables */ +ACPI_DMTABLE_INFO AcpiDmTableInfoPcctHdr[] = +{ + {ACPI_DMT_PCCT, ACPI_PCCT0_OFFSET (Header.Type), "Subtable Type", 0}, + {ACPI_DMT_UINT8, ACPI_PCCT0_OFFSET (Header.Length), "Length", DT_LENGTH}, + ACPI_DMT_TERMINATOR +}; + /* 0: Generic Communications Subspace */ ACPI_DMTABLE_INFO AcpiDmTableInfoPcct0[] = { - {ACPI_DMT_UINT8, ACPI_PCCT0_OFFSET (Header.Type), "Subtable Type", 0}, - {ACPI_DMT_UINT8, ACPI_PCCT0_OFFSET (Header.Length), "Length", DT_LENGTH}, {ACPI_DMT_UINT48, ACPI_PCCT0_OFFSET (Reserved[0]), "Reserved", 0}, {ACPI_DMT_UINT64, ACPI_PCCT0_OFFSET (BaseAddress), "Base Address", 0}, {ACPI_DMT_UINT64, ACPI_PCCT0_OFFSET (Length), "Address Length", 0}, {ACPI_DMT_GAS, ACPI_PCCT0_OFFSET (DoorbellRegister), "Doorbell Register", 0}, {ACPI_DMT_UINT64, ACPI_PCCT0_OFFSET (PreserveMask), "Preserve Mask", 0}, {ACPI_DMT_UINT64, ACPI_PCCT0_OFFSET (WriteMask), "Write Mask", 0}, + {ACPI_DMT_UINT32, ACPI_PCCT0_OFFSET (Latency), "Command Latency", 0}, + {ACPI_DMT_UINT32, ACPI_PCCT0_OFFSET (MaxAccessRate), "Maximum Access Rate", 0}, + {ACPI_DMT_UINT16, ACPI_PCCT0_OFFSET (MinTurnaroundTime), "Minimum Turnaround Time", 0}, ACPI_DMT_TERMINATOR }; diff -Nru acpica-unix-20131115/source/common/getopt.c acpica-unix-20140114/source/common/getopt.c --- acpica-unix-20131115/source/common/getopt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/common/getopt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslanalyze.c acpica-unix-20140114/source/compiler/aslanalyze.c --- acpica-unix-20131115/source/compiler/aslanalyze.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslanalyze.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslbtypes.c acpica-unix-20140114/source/compiler/aslbtypes.c --- acpica-unix-20131115/source/compiler/aslbtypes.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslbtypes.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -243,7 +243,7 @@ return (ACPI_BTYPE_INTEGER | ACPI_BTYPE_DDB_HANDLE); - case ACPI_BTYPE_DEBUG_OBJECT: + case ACPI_TYPE_DEBUG_OBJECT: /* Cannot be used as a source operand */ diff -Nru acpica-unix-20131115/source/compiler/aslcodegen.c acpica-unix-20140114/source/compiler/aslcodegen.c --- acpica-unix-20131115/source/compiler/aslcodegen.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslcodegen.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslcompile.c acpica-unix-20140114/source/compiler/aslcompile.c --- acpica-unix-20131115/source/compiler/aslcompile.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslcompile.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslcompiler.h acpica-unix-20140114/source/compiler/aslcompiler.h --- acpica-unix-20131115/source/compiler/aslcompiler.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslcompiler.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslcompiler.l acpica-unix-20140114/source/compiler/aslcompiler.l --- acpica-unix-20131115/source/compiler/aslcompiler.l 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslcompiler.l 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslcompiler.y acpica-unix-20140114/source/compiler/aslcompiler.y --- acpica-unix-20131115/source/compiler/aslcompiler.y 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslcompiler.y 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asldefine.h acpica-unix-20140114/source/compiler/asldefine.h --- acpica-unix-20131115/source/compiler/asldefine.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asldefine.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -55,7 +55,7 @@ #define ASL_INVOCATION_NAME "iasl" #define ASL_CREATOR_ID "INTL" -#define ASL_COMPLIANCE "Supports ACPI Specification Revision 5.0" +#define ASL_COMPLIANCE "Supports ACPI Specification Revision 5.0A" /* Configuration constants */ diff -Nru acpica-unix-20131115/source/compiler/aslerror.c acpica-unix-20140114/source/compiler/aslerror.c --- acpica-unix-20131115/source/compiler/aslerror.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslerror.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -200,6 +200,16 @@ switch (Enode->Level) { + case ASL_WARNING: + case ASL_WARNING2: + case ASL_WARNING3: + + if (!Gbl_DisplayWarnings) + { + return; + } + break; + case ASL_REMARK: if (!Gbl_DisplayRemarks) @@ -222,11 +232,10 @@ } } - /* Get the file handles */ + /* Get the various required file handles */ OutputFile = Gbl_Files[FileId].Handle; - if (!Enode->SourceLine) { /* Use the merged header/source file if present, otherwise use input file */ diff -Nru acpica-unix-20131115/source/compiler/aslfileio.c acpica-unix-20140114/source/compiler/aslfileio.c --- acpica-unix-20131115/source/compiler/aslfileio.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslfileio.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslfiles.c acpica-unix-20140114/source/compiler/aslfiles.c --- acpica-unix-20131115/source/compiler/aslfiles.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslfiles.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -824,6 +824,7 @@ *(Substring+1) = 0; } + UtConvertBackslashes (Gbl_OutputFilenamePrefix); return (AE_OK); } #endif diff -Nru acpica-unix-20131115/source/compiler/aslfold.c acpica-unix-20140114/source/compiler/aslfold.c --- acpica-unix-20131115/source/compiler/aslfold.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslfold.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslglobal.h acpica-unix-20140114/source/compiler/aslglobal.h --- acpica-unix-20131115/source/compiler/aslglobal.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslglobal.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -163,6 +163,7 @@ ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_IntegerOptimizationFlag, TRUE); ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_ReferenceOptimizationFlag, TRUE); ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_DisplayRemarks, TRUE); +ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_DisplayWarnings, TRUE); ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_DisplayOptimizations, FALSE); ASL_EXTERN UINT8 ASL_INIT_GLOBAL (Gbl_WarningLevel, ASL_WARNING); ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (Gbl_UseOriginalCompilerId, FALSE); @@ -232,7 +233,6 @@ ASL_EXTERN UINT32 ASL_INIT_GLOBAL (Gbl_ReservedMethods, 0); ASL_EXTERN char ASL_INIT_GLOBAL (*Gbl_TableSignature, "NO_SIG"); ASL_EXTERN char ASL_INIT_GLOBAL (*Gbl_TableId, "NO_ID"); -ASL_EXTERN FILE *AcpiGbl_DebugFile; /* Placeholder for oswinxf only */ /* Static structures */ diff -Nru acpica-unix-20131115/source/compiler/aslhex.c acpica-unix-20140114/source/compiler/aslhex.c --- acpica-unix-20131115/source/compiler/aslhex.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslhex.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asllength.c acpica-unix-20140114/source/compiler/asllength.c --- acpica-unix-20131115/source/compiler/asllength.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asllength.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asllisting.c acpica-unix-20140114/source/compiler/asllisting.c --- acpica-unix-20131115/source/compiler/asllisting.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asllisting.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asllistsup.c acpica-unix-20140114/source/compiler/asllistsup.c --- acpica-unix-20131115/source/compiler/asllistsup.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asllistsup.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslload.c acpica-unix-20140114/source/compiler/aslload.c --- acpica-unix-20131115/source/compiler/aslload.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslload.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asllookup.c acpica-unix-20140114/source/compiler/asllookup.c --- acpica-unix-20131115/source/compiler/asllookup.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asllookup.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -105,7 +105,9 @@ * DESCRIPTION: Check for an unreferenced namespace object and emit a warning. * We have to be careful, because some types and names are * typically or always unreferenced, we don't want to issue - * excessive warnings. + * excessive warnings. Note: Names that are declared within a + * control method are temporary, so we always issue a remark + * if they are not referenced. * ******************************************************************************/ @@ -117,6 +119,7 @@ void **ReturnValue) { ACPI_NAMESPACE_NODE *Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle); + ACPI_NAMESPACE_NODE *Next; /* Referenced flag is set during the namespace xref */ @@ -126,23 +129,19 @@ return (AE_OK); } - /* - * Ignore names that start with an underscore, - * these are the reserved ACPI names and are typically not referenced, - * they are called by the host OS. - */ - if (Node->Name.Ascii[0] == '_') + if (!Node->Op) { return (AE_OK); } - /* There are some types that are typically not referenced, ignore them */ + /* These types are typically never directly referenced, ignore them */ switch (Node->Type) { case ACPI_TYPE_DEVICE: case ACPI_TYPE_PROCESSOR: case ACPI_TYPE_POWER: + case ACPI_TYPE_THERMAL: case ACPI_TYPE_LOCAL_RESOURCE: return (AE_OK); @@ -152,12 +151,47 @@ break; } - /* All others are valid unreferenced namespace objects */ + /* Determine if the name is within a control method */ - if (Node->Op) + Next = Node->Parent; + while (Next) { - AslError (ASL_WARNING2, ASL_MSG_NOT_REFERENCED, LkGetNameOp (Node->Op), NULL); + if (Next->Type == ACPI_TYPE_METHOD) + { + /* + * Name is within a method, therefore it is temporary. + * Issue a remark even if it is a reserved name (starts + * with an underscore). + */ + sprintf (MsgBuffer, "Name is within method [%4.4s]", + Next->Name.Ascii); + AslError (ASL_REMARK, ASL_MSG_NOT_REFERENCED, + LkGetNameOp (Node->Op), MsgBuffer); + return (AE_OK); + } + + Next = Next->Parent; } + + /* The name is not within a control method */ + + /* + * Ignore names that start with an underscore. These are the reserved + * ACPI names and are typically not referenced since they are meant + * to be called by the host OS. + */ + if (Node->Name.Ascii[0] == '_') + { + return (AE_OK); + } + + /* + * What remains is an unresolved user name that is not within a method. + * However, the object could be referenced via another table, so issue + * the warning at level 2. + */ + AslError (ASL_WARNING2, ASL_MSG_NOT_REFERENCED, + LkGetNameOp (Node->Op), NULL); return (AE_OK); } diff -Nru acpica-unix-20131115/source/compiler/aslmain.c acpica-unix-20140114/source/compiler/aslmain.c --- acpica-unix-20131115/source/compiler/aslmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -94,11 +94,21 @@ printf ("%s\n\n", ASL_COMPLIANCE); ACPI_USAGE_HEADER ("iasl [Options] [Files]"); - printf ("\nGlobal:\n"); + printf ("\nGeneral:\n"); ACPI_OPTION ("-@ ", "Specify command file"); ACPI_OPTION ("-I ", "Specify additional include directory"); ACPI_OPTION ("-T |ALL|*", "Create table template file for ACPI "); + ACPI_OPTION ("-p ", "Specify path/filename prefix for all output files"); ACPI_OPTION ("-v", "Display compiler version"); + ACPI_OPTION ("-vo", "Enable optimization comments"); + ACPI_OPTION ("-vs", "Disable signon"); + + printf ("\nHelp:\n"); + ACPI_OPTION ("-h", "This message"); + ACPI_OPTION ("-hc", "Display operators allowed in constant expressions"); + ACPI_OPTION ("-hf", "Display help for output filename generation"); + ACPI_OPTION ("-hr", "Display ACPI reserved method names"); + ACPI_OPTION ("-ht", "Display currently supported ACPI table names"); printf ("\nPreprocessor:\n"); ACPI_OPTION ("-D ", "Define symbol for preprocessor use"); @@ -106,13 +116,11 @@ ACPI_OPTION ("-P", "Preprocess only and create preprocessor output file (*.i)"); ACPI_OPTION ("-Pn", "Disable preprocessor"); - printf ("\nGeneral Processing:\n"); - ACPI_OPTION ("-p ", "Specify path/filename prefix for all output files"); - ACPI_OPTION ("-va", "Disable all errors and warnings (summary only)"); + printf ("\nErrors, Warnings, and Remarks:\n"); + ACPI_OPTION ("-va", "Disable all errors/warnings/remarks"); + ACPI_OPTION ("-ve", "Report only errors (ignore warnings and remarks)"); ACPI_OPTION ("-vi", "Less verbose errors and warnings for use with IDEs"); - ACPI_OPTION ("-vo", "Enable optimization comments"); ACPI_OPTION ("-vr", "Disable remarks"); - ACPI_OPTION ("-vs", "Disable signon"); ACPI_OPTION ("-vw ", "Disable specific warning or remark"); ACPI_OPTION ("-w1 -w2 -w3", "Set warning reporting level"); ACPI_OPTION ("-we", "Report warnings as errors"); @@ -154,13 +162,6 @@ ACPI_OPTION ("-in", "Ignore NoOp opcodes"); ACPI_OPTION ("-vt", "Dump binary table data in hex format within output file"); - printf ("\nHelp:\n"); - ACPI_OPTION ("-h", "This message"); - ACPI_OPTION ("-hc", "Display operators allowed in constant expressions"); - ACPI_OPTION ("-hf", "Display help for output filename generation"); - ACPI_OPTION ("-hr", "Display ACPI reserved method names"); - ACPI_OPTION ("-ht", "Display currently supported ACPI table names"); - printf ("\nDebug Options:\n"); ACPI_OPTION ("-bf -bt", "Create debug file (full or parse tree only) (*.txt)"); ACPI_OPTION ("-f", "Ignore errors, force creation of AML output file(s)"); @@ -353,6 +354,7 @@ if (Gbl_UseDefaultAmlFilename) { Gbl_OutputFilenamePrefix = argv[Index2]; + UtConvertBackslashes (Gbl_OutputFilenamePrefix); } Status = AslDoOneFile (argv[Index2]); diff -Nru acpica-unix-20131115/source/compiler/aslmap.c acpica-unix-20140114/source/compiler/aslmap.c --- acpica-unix-20131115/source/compiler/aslmap.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslmap.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslmessages.h acpica-unix-20140114/source/compiler/aslmessages.h --- acpica-unix-20131115/source/compiler/aslmessages.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslmessages.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -369,7 +369,7 @@ /* ASL_MSG_NOT_METHOD */ "Not a control method, cannot invoke", /* ASL_MSG_NOT_PARAMETER */ "Not a parameter, used as local only", /* ASL_MSG_NOT_REACHABLE */ "Object is not accessible from this scope", -/* ASL_MSG_NOT_REFERENCED */ "Namespace object is not referenced", +/* ASL_MSG_NOT_REFERENCED */ "Object is not referenced", /* ASL_MSG_NULL_DESCRIPTOR */ "Min/Max/Length/Gran are all zero, but no resource tag", /* ASL_MSG_NULL_STRING */ "Invalid zero-length (null) string", /* ASL_MSG_OPEN */ "Could not open file", diff -Nru acpica-unix-20131115/source/compiler/aslmethod.c acpica-unix-20140114/source/compiler/aslmethod.c --- acpica-unix-20131115/source/compiler/aslmethod.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslmethod.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslnamesp.c acpica-unix-20140114/source/compiler/aslnamesp.c --- acpica-unix-20131115/source/compiler/aslnamesp.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslnamesp.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asloffset.c acpica-unix-20140114/source/compiler/asloffset.c --- acpica-unix-20131115/source/compiler/asloffset.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asloffset.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslopcodes.c acpica-unix-20140114/source/compiler/aslopcodes.c --- acpica-unix-20131115/source/compiler/aslopcodes.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslopcodes.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asloperands.c acpica-unix-20140114/source/compiler/asloperands.c --- acpica-unix-20131115/source/compiler/asloperands.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asloperands.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -922,6 +922,7 @@ strcat (Filename, (char *) Child->Asl.Value.Buffer); Gbl_OutputFilenamePrefix = Filename; + UtConvertBackslashes (Gbl_OutputFilenamePrefix); } Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG; diff -Nru acpica-unix-20131115/source/compiler/aslopt.c acpica-unix-20140114/source/compiler/aslopt.c --- acpica-unix-20131115/source/compiler/aslopt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslopt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -576,7 +576,8 @@ return_VOID; } - ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, "%5d [%12.12s] [%12.12s] ", + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, + "PATH OPTIMIZE: Line %5d ParentOp [%12.12s] ThisOp [%12.12s] ", Op->Asl.LogicalLineNumber, AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), AcpiPsGetOpcodeName (Op->Common.AmlOpcode))); @@ -620,7 +621,7 @@ { /* This is the declaration of a new name */ - ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, "NAME")); + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, "NAME\n")); /* * The node of interest is the parent of this node (the containing @@ -646,7 +647,7 @@ { /* This is a reference to an existing named object */ - ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, "REF ")); + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, "REFERENCE\n")); } /* @@ -688,9 +689,10 @@ } ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, - "%37s (%2u) ==> %-32s(%2u) %-32s", - (char *) CurrentPath.Pointer, (UINT32) CurrentPath.Length, - (char *) TargetPath.Pointer, (UINT32) TargetPath.Length, ExternalNameString)); + "CURRENT SCOPE: (%2u) %-37s FULL PATH TO NAME: (%2u) %-32s ACTUAL AML:%-32s\n", + (UINT32) CurrentPath.Length, (char *) CurrentPath.Pointer, + (UINT32) TargetPath.Length, (char *) TargetPath.Pointer, + ExternalNameString)); ACPI_FREE (ExternalNameString); @@ -747,7 +749,8 @@ HowMuchShorter = (AmlNameStringLength - ACPI_STRLEN (NewPath)); OptTotal += HowMuchShorter; - ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, " REDUCED %2u (%u)", + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_OPTIMIZATIONS, + " REDUCED BY %2u (TOTAL SAVED %2u)", (UINT32) HowMuchShorter, OptTotal)); if (Flags & AML_NAMED) diff -Nru acpica-unix-20131115/source/compiler/asloptions.c acpica-unix-20140114/source/compiler/asloptions.c --- acpica-unix-20131115/source/compiler/asloptions.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asloptions.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -523,6 +523,8 @@ case 'p': /* Override default AML output filename */ Gbl_OutputFilenamePrefix = AcpiGbl_Optarg; + UtConvertBackslashes (Gbl_OutputFilenamePrefix); + Gbl_UseDefaultAmlFilename = FALSE; break; @@ -606,11 +608,19 @@ case 'a': - /* Disable All error/warning messages */ + /* Disable all error/warning/remark messages */ Gbl_NoErrors = TRUE; break; + case 'e': + + /* Disable all warning/remark messages (errors only) */ + + Gbl_DisplayRemarks = FALSE; + Gbl_DisplayWarnings = FALSE; + break; + case 'i': /* * Support for integrated development environment(s). diff -Nru acpica-unix-20131115/source/compiler/aslpredef.c acpica-unix-20140114/source/compiler/aslpredef.c --- acpica-unix-20131115/source/compiler/aslpredef.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslpredef.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslprepkg.c acpica-unix-20140114/source/compiler/aslprepkg.c --- acpica-unix-20131115/source/compiler/aslprepkg.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslprepkg.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslresource.c acpica-unix-20140114/source/compiler/aslresource.c --- acpica-unix-20131115/source/compiler/aslresource.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslresource.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype1.c acpica-unix-20140114/source/compiler/aslrestype1.c --- acpica-unix-20131115/source/compiler/aslrestype1.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype1.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype1i.c acpica-unix-20140114/source/compiler/aslrestype1i.c --- acpica-unix-20131115/source/compiler/aslrestype1i.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype1i.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2.c acpica-unix-20140114/source/compiler/aslrestype2.c --- acpica-unix-20131115/source/compiler/aslrestype2.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2d.c acpica-unix-20140114/source/compiler/aslrestype2d.c --- acpica-unix-20131115/source/compiler/aslrestype2d.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2d.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2e.c acpica-unix-20140114/source/compiler/aslrestype2e.c --- acpica-unix-20131115/source/compiler/aslrestype2e.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2e.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2q.c acpica-unix-20140114/source/compiler/aslrestype2q.c --- acpica-unix-20131115/source/compiler/aslrestype2q.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2q.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2s.c acpica-unix-20140114/source/compiler/aslrestype2s.c --- acpica-unix-20131115/source/compiler/aslrestype2s.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2s.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslrestype2w.c acpica-unix-20140114/source/compiler/aslrestype2w.c --- acpica-unix-20131115/source/compiler/aslrestype2w.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslrestype2w.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslstartup.c acpica-unix-20140114/source/compiler/aslstartup.c --- acpica-unix-20131115/source/compiler/aslstartup.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslstartup.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -326,6 +326,7 @@ } Gbl_Files[ASL_FILE_INPUT].Filename = Filename; + UtConvertBackslashes (Filename); /* * AML Disassembly (Optional) diff -Nru acpica-unix-20131115/source/compiler/aslstubs.c acpica-unix-20140114/source/compiler/aslstubs.c --- acpica-unix-20131115/source/compiler/aslstubs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslstubs.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -239,7 +239,7 @@ AcpiOsGetThreadId ( void) { - return (0xFFFF); + return (1); } ACPI_STATUS diff -Nru acpica-unix-20131115/source/compiler/aslsupport.l acpica-unix-20140114/source/compiler/aslsupport.l --- acpica-unix-20131115/source/compiler/aslsupport.l 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslsupport.l 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asltransform.c acpica-unix-20140114/source/compiler/asltransform.c --- acpica-unix-20131115/source/compiler/asltransform.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asltransform.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asltree.c acpica-unix-20140114/source/compiler/asltree.c --- acpica-unix-20131115/source/compiler/asltree.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asltree.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asltypes.h acpica-unix-20140114/source/compiler/asltypes.h --- acpica-unix-20131115/source/compiler/asltypes.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asltypes.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslutils.c acpica-unix-20140114/source/compiler/aslutils.c --- acpica-unix-20131115/source/compiler/aslutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/asluuid.c acpica-unix-20140114/source/compiler/asluuid.c --- acpica-unix-20131115/source/compiler/asluuid.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/asluuid.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/aslwalks.c acpica-unix-20140114/source/compiler/aslwalks.c --- acpica-unix-20131115/source/compiler/aslwalks.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslwalks.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -605,6 +605,10 @@ ArgNode = Op->Asl.Parent; /* Field definition */ ArgNode = ArgNode->Asl.Child; /* First child is the OpRegion Name */ Node = ArgNode->Asl.Node; /* OpRegion namespace node */ + if (!Node) + { + break; + } ArgNode = Node->Op; /* OpRegion definition */ ArgNode = ArgNode->Asl.Child; /* First child is the OpRegion Name */ diff -Nru acpica-unix-20131115/source/compiler/aslxref.c acpica-unix-20140114/source/compiler/aslxref.c --- acpica-unix-20131115/source/compiler/aslxref.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/aslxref.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -316,7 +316,7 @@ */ if (Op->Asl.CompileFlags & NODE_IS_NAME_DECLARATION) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* We are only interested in opcodes that have an associated name */ @@ -329,7 +329,7 @@ (Op->Asl.ParseOpcode != PARSEOP_NAMESEG) && (Op->Asl.ParseOpcode != PARSEOP_METHODCALL)) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* @@ -340,7 +340,7 @@ if ((Op->Asl.Parent) && (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_CONDREFOF)) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* @@ -459,7 +459,8 @@ Status = AE_OK; } - return (Status); + + return_ACPI_STATUS (Status); } /* Check for a reference vs. name declaration */ @@ -624,7 +625,6 @@ (Op->Asl.ParseOpcode == PARSEOP_METHODCALL)) { - /* * A reference to a method within one of these opcodes is not an * invocation of the method, it is simply a reference to the method. @@ -634,7 +634,7 @@ (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_DEREFOF) || (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_OBJECTTYPE))) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* * There are two types of method invocation: @@ -650,7 +650,7 @@ Op->Asl.ExternalName, AcpiUtGetTypeName (Node->Type)); AslError (ASL_ERROR, ASL_MSG_NOT_METHOD, Op, MsgBuffer); - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* Save the method node in the caller's op */ @@ -658,7 +658,7 @@ Op->Asl.Node = Node; if (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_CONDREFOF) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* @@ -823,7 +823,7 @@ } Op->Asl.Node = Node; - return (Status); + return_ACPI_STATUS (Status); } @@ -858,7 +858,7 @@ OpInfo = AcpiPsGetOpcodeInfo (Op->Asl.AmlOpcode); if (!(OpInfo->Flags & AML_NAMED)) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* Not interested in name references, we did not open a scope for them */ @@ -867,7 +867,7 @@ (Op->Asl.ParseOpcode == PARSEOP_NAMESEG) || (Op->Asl.ParseOpcode == PARSEOP_METHODCALL)) { - return (AE_OK); + return_ACPI_STATUS (AE_OK); } /* Pop the scope stack if necessary */ @@ -882,5 +882,5 @@ (void) AcpiDsScopeStackPop (WalkState); } - return (AE_OK); + return_ACPI_STATUS (AE_OK); } diff -Nru acpica-unix-20131115/source/compiler/dtcompile.c acpica-unix-20140114/source/compiler/dtcompile.c --- acpica-unix-20131115/source/compiler/dtcompile.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtcompile.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -446,6 +446,15 @@ return (AE_BAD_PARAMETER); } + /* Ignore optional subtable if name does not match */ + + if ((Info->Flags & DT_OPTIONAL) && + ACPI_STRCMP ((*Field)->Name, Info->Name)) + { + *RetSubtable = NULL; + return (AE_OK); + } + Length = DtGetSubtableLength (*Field, Info); if (Length == ASL_EOF) { diff -Nru acpica-unix-20131115/source/compiler/dtcompiler.h acpica-unix-20140114/source/compiler/dtcompiler.h --- acpica-unix-20131115/source/compiler/dtcompiler.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtcompiler.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -400,6 +400,10 @@ void **PFieldList); ACPI_STATUS +DtCompileDbg2 ( + void **PFieldList); + +ACPI_STATUS DtCompileDmar ( void **PFieldList); @@ -452,6 +456,10 @@ void **PFieldList); ACPI_STATUS +DtCompilePcct ( + void **PFieldList); + +ACPI_STATUS DtCompileRsdt ( void **PFieldList); @@ -503,6 +511,7 @@ extern const unsigned char TemplateBgrt[]; extern const unsigned char TemplateCpep[]; extern const unsigned char TemplateCsrt[]; +extern const unsigned char TemplateDbg2[]; extern const unsigned char TemplateDbgp[]; extern const unsigned char TemplateDmar[]; extern const unsigned char TemplateEcdt[]; @@ -520,6 +529,7 @@ extern const unsigned char TemplateMpst[]; extern const unsigned char TemplateMsct[]; extern const unsigned char TemplateMtmr[]; +extern const unsigned char TemplatePcct[]; extern const unsigned char TemplatePmtt[]; extern const unsigned char TemplateRsdt[]; extern const unsigned char TemplateS3pt[]; diff -Nru acpica-unix-20131115/source/compiler/dtexpress.c acpica-unix-20140114/source/compiler/dtexpress.c --- acpica-unix-20131115/source/compiler/dtexpress.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtexpress.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dtfield.c acpica-unix-20140114/source/compiler/dtfield.c --- acpica-unix-20131115/source/compiler/dtfield.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtfield.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -340,7 +340,8 @@ if (Value > MaxValue) { - sprintf (MsgBuffer, "%8.8X%8.8X", ACPI_FORMAT_UINT64 (Value)); + sprintf (MsgBuffer, "%8.8X%8.8X - max %u bytes", + ACPI_FORMAT_UINT64 (Value), ByteLength); DtError (ASL_ERROR, ASL_MSG_INTEGER_SIZE, Field, MsgBuffer); } diff -Nru acpica-unix-20131115/source/compiler/dtio.c acpica-unix-20140114/source/compiler/dtio.c --- acpica-unix-20131115/source/compiler/dtio.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtio.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dtparser.l acpica-unix-20140114/source/compiler/dtparser.l --- acpica-unix-20131115/source/compiler/dtparser.l 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtparser.l 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dtparser.y acpica-unix-20140114/source/compiler/dtparser.y --- acpica-unix-20131115/source/compiler/dtparser.y 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtparser.y 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dtsubtable.c acpica-unix-20140114/source/compiler/dtsubtable.c --- acpica-unix-20131115/source/compiler/dtsubtable.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtsubtable.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dttable.c acpica-unix-20140114/source/compiler/dttable.c --- acpica-unix-20131115/source/compiler/dttable.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dttable.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -520,6 +520,156 @@ /****************************************************************************** * + * FUNCTION: DtCompileDbg2 + * + * PARAMETERS: List - Current field list pointer + * + * RETURN: Status + * + * DESCRIPTION: Compile DBG2. + * + *****************************************************************************/ + +ACPI_STATUS +DtCompileDbg2 ( + void **List) +{ + ACPI_STATUS Status; + DT_SUBTABLE *Subtable; + DT_SUBTABLE *ParentTable; + DT_FIELD **PFieldList = (DT_FIELD **) List; + UINT32 SubtableCount; + ACPI_DBG2_HEADER *Dbg2Header; + ACPI_DBG2_DEVICE *DeviceInfo; + UINT16 CurrentOffset; + UINT32 i; + + + /* Main table */ + + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2, &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + ParentTable = DtPeekSubtable (); + DtInsertSubtable (ParentTable, Subtable); + + /* Main table fields */ + + Dbg2Header = ACPI_CAST_PTR (ACPI_DBG2_HEADER, Subtable->Buffer); + Dbg2Header->InfoOffset = sizeof (ACPI_TABLE_HEADER) + ACPI_PTR_DIFF ( + ACPI_ADD_PTR (UINT8, Dbg2Header, sizeof (ACPI_DBG2_HEADER)), Dbg2Header); + + SubtableCount = Dbg2Header->InfoCount; + DtPushSubtable (Subtable); + + /* Process all Device Information subtables (Count = InfoCount) */ + + while (*PFieldList && SubtableCount) + { + /* Subtable: Debug Device Information */ + + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2Device, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + DeviceInfo = ACPI_CAST_PTR (ACPI_DBG2_DEVICE, Subtable->Buffer); + CurrentOffset = (UINT16) sizeof (ACPI_DBG2_DEVICE); + + ParentTable = DtPeekSubtable (); + DtInsertSubtable (ParentTable, Subtable); + DtPushSubtable (Subtable); + + ParentTable = DtPeekSubtable (); + + /* BaseAddressRegister GAS array (Required, size is RegisterCount) */ + + DeviceInfo->BaseAddressOffset = CurrentOffset; + for (i = 0; *PFieldList && (i < DeviceInfo->RegisterCount); i++) + { + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2Addr, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + CurrentOffset += (UINT16) sizeof (ACPI_GENERIC_ADDRESS); + DtInsertSubtable (ParentTable, Subtable); + } + + /* AddressSize array (Required, size = RegisterCount) */ + + DeviceInfo->AddressSizeOffset = CurrentOffset; + for (i = 0; *PFieldList && (i < DeviceInfo->RegisterCount); i++) + { + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2Size, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + CurrentOffset += (UINT16) sizeof (UINT32); + DtInsertSubtable (ParentTable, Subtable); + } + + /* NamespaceString device identifier (Required, size = NamePathLength) */ + + DeviceInfo->NamepathOffset = CurrentOffset; + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2Name, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + /* Update the device info header */ + + DeviceInfo->NamepathLength = (UINT16) Subtable->Length; + CurrentOffset += (UINT16) DeviceInfo->NamepathLength; + DtInsertSubtable (ParentTable, Subtable); + + /* OemData - Variable-length data (Optional, size = OemDataLength) */ + + Status = DtCompileTable (PFieldList, AcpiDmTableInfoDbg2OemData, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + /* Update the device info header (zeros if no OEM data present) */ + + DeviceInfo->OemDataOffset = 0; + DeviceInfo->OemDataLength = 0; + + /* Optional subtable (OemData) */ + + if (Subtable && Subtable->Length) + { + DeviceInfo->OemDataOffset = CurrentOffset; + DeviceInfo->OemDataLength = (UINT16) Subtable->Length; + + DtInsertSubtable (ParentTable, Subtable); + } + + SubtableCount--; + DtPopSubtable (); /* Get next Device Information subtable */ + } + + DtPopSubtable (); + return (AE_OK); +} + + +/****************************************************************************** + * * FUNCTION: DtCompileDmar * * PARAMETERS: List - Current field list pointer @@ -1505,6 +1655,85 @@ /****************************************************************************** * + * FUNCTION: DtCompilePcct + * + * PARAMETERS: List - Current field list pointer + * + * RETURN: Status + * + * DESCRIPTION: Compile PCCT. + * + *****************************************************************************/ + +ACPI_STATUS +DtCompilePcct ( + void **List) +{ + ACPI_STATUS Status; + DT_SUBTABLE *Subtable; + DT_SUBTABLE *ParentTable; + DT_FIELD **PFieldList = (DT_FIELD **) List; + DT_FIELD *SubtableStart; + ACPI_SUBTABLE_HEADER *PcctHeader; + ACPI_DMTABLE_INFO *InfoTable; + + + Status = DtCompileTable (PFieldList, AcpiDmTableInfoPcct, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + ParentTable = DtPeekSubtable (); + DtInsertSubtable (ParentTable, Subtable); + + while (*PFieldList) + { + SubtableStart = *PFieldList; + Status = DtCompileTable (PFieldList, AcpiDmTableInfoPcctHdr, + &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + ParentTable = DtPeekSubtable (); + DtInsertSubtable (ParentTable, Subtable); + DtPushSubtable (Subtable); + + PcctHeader = ACPI_CAST_PTR (ACPI_SUBTABLE_HEADER, Subtable->Buffer); + + switch (PcctHeader->Type) + { + case ACPI_PCCT_TYPE_GENERIC_SUBSPACE: + + InfoTable = AcpiDmTableInfoPcct0; + break; + + default: + + DtFatal (ASL_MSG_UNKNOWN_SUBTABLE, SubtableStart, "PCCT"); + return (AE_ERROR); + } + + Status = DtCompileTable (PFieldList, InfoTable, &Subtable, TRUE); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + ParentTable = DtPeekSubtable (); + DtInsertSubtable (ParentTable, Subtable); + DtPopSubtable (); + } + + return (AE_OK); +} + + +/****************************************************************************** + * * FUNCTION: DtCompilePmtt * * PARAMETERS: List - Current field list pointer diff -Nru acpica-unix-20131115/source/compiler/dttemplate.c acpica-unix-20140114/source/compiler/dttemplate.c --- acpica-unix-20131115/source/compiler/dttemplate.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dttemplate.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/dttemplate.h acpica-unix-20140114/source/compiler/dttemplate.h --- acpica-unix-20131115/source/compiler/dttemplate.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dttemplate.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -174,6 +174,33 @@ 0x43,0x48,0x41,0x37 /* 00000148 "CHA7" */ }; +const unsigned char TemplateDbg2[] = +{ + 0x44,0x42,0x47,0x32,0xB2,0x00,0x00,0x00, /* 00000000 "DBG2...." */ + 0x01,0xBA,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 "..INTEL " */ + 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ + 0x00,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x2C,0x00,0x00,0x00, /* 00000020 "... ,..." */ + 0x02,0x00,0x00,0x00,0xEE,0x3F,0x00,0x02, /* 00000028 ".....?.." */ + 0x09,0x00,0x36,0x00,0x00,0x00,0x00,0x00, /* 00000030 "..6....." */ + 0x00,0x80,0x00,0x00,0x00,0x00,0x16,0x00, /* 00000038 "........" */ + 0x2E,0x00,0x01,0x32,0x00,0x03,0x88,0x77, /* 00000040 "...2...w" */ + 0x66,0x55,0x44,0x33,0x22,0x11,0x01,0x64, /* 00000048 "fUD3"..d" */ + 0x00,0x04,0x11,0x00,0xFF,0xEE,0xDD,0xCC, /* 00000050 "........" */ + 0xBB,0xAA,0x10,0x32,0x54,0x76,0x98,0xBA, /* 00000058 "...2Tv.." */ + 0xDC,0xFE,0x4D,0x79,0x44,0x65,0x76,0x69, /* 00000060 "..MyDevi" */ + 0x63,0x65,0x00,0xEE,0x47,0x00,0x01,0x11, /* 00000068 "ce..G..." */ + 0x00,0x26,0x00,0x10,0x00,0x37,0x00,0x00, /* 00000070 ".&...7.." */ + 0x80,0x00,0x00,0x00,0x00,0x16,0x00,0x22, /* 00000078 "......."" */ + 0x00,0x01,0x64,0x00,0x04,0x11,0x00,0xFF, /* 00000080 "..d....." */ + 0xEE,0xDD,0xCC,0xBB,0xAA,0x98,0xBA,0xDC, /* 00000088 "........" */ + 0xFE,0x5C,0x5C,0x5F,0x53,0x42,0x5F,0x2E, /* 00000090 ".\\_SB_." */ + 0x50,0x43,0x49,0x30,0x2E,0x44,0x42,0x47, /* 00000098 "PCI0.DBG" */ + 0x50,0x00,0x41,0x42,0x43,0x44,0x45,0x46, /* 000000A0 "P.ABCDEF" */ + 0x47,0x48,0x49,0x50,0x51,0x52,0x53,0x54, /* 000000A8 "GHIPQRST" */ + 0x55,0x56 /* 000000B0 "UV" */ +}; + const unsigned char TemplateDbgp[] = { 0x44,0x42,0x47,0x50,0x34,0x00,0x00,0x00, /* 00000000 "DBGP4..." */ @@ -353,10 +380,10 @@ const unsigned char TemplateFadt[] = { 0x46,0x41,0x43,0x50,0x0C,0x01,0x00,0x00, /* 00000000 "FACP...." */ - 0x05,0x18,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 "..INTEL " */ + 0x05,0x64,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 ".dINTEL " */ 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ 0x00,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ - 0x23,0x11,0x11,0x20,0x01,0x00,0x00,0x00, /* 00000020 "#.. ...." */ + 0x15,0x11,0x13,0x20,0x01,0x00,0x00,0x00, /* 00000020 "... ...." */ 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000028 "........" */ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000030 "........" */ 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000038 "........" */ @@ -379,7 +406,7 @@ 0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00, /* 000000C0 "........" */ 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000C8 "........" */ 0x01,0x20,0x00,0x03,0x01,0x00,0x00,0x00, /* 000000D0 ". ......" */ - 0x00,0x00,0x00,0x00,0x01,0x80,0x00,0x01, /* 000000D8 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x01, /* 000000D8 ".....@.." */ 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000E0 "........" */ 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000E8 "........" */ 0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x01, /* 000000F0 "........" */ @@ -646,6 +673,32 @@ 0x00,0x00,0x00,0x00 /* 00000048 "...." */ }; +const unsigned char TemplatePcct[] = +{ + 0x50,0x43,0x43,0x54,0xAC,0x00,0x00,0x00, /* 00000000 "PCCT...." */ + 0x01,0x97,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 "..INTEL " */ + 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x01,0x00,0x00,0x00, /* 00000020 "... ...." */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000028 "........" */ + 0x00,0x3E,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000030 ".>......" */ + 0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11, /* 00000038 "........" */ + 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22, /* 00000040 """""""""" */ + 0x01,0x32,0x00,0x03,0x33,0x33,0x33,0x33, /* 00000048 ".2..3333" */ + 0x33,0x33,0x33,0x33,0x44,0x44,0x44,0x44, /* 00000050 "3333DDDD" */ + 0x44,0x44,0x44,0x44,0x55,0x55,0x55,0x55, /* 00000058 "DDDDUUUU" */ + 0x55,0x55,0x55,0x55,0x66,0x66,0x66,0x66, /* 00000060 "UUUUffff" */ + 0x77,0x77,0x77,0x77,0x88,0x88,0x00,0x3E, /* 00000068 "wwww...>" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF, /* 00000070 "........" */ + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xEE, /* 00000078 "........" */ + 0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,0x01,0x32, /* 00000080 ".......2" */ + 0x00,0x03,0xDD,0xDD,0xDD,0xDD,0xDD,0xDD, /* 00000088 "........" */ + 0xDD,0xDD,0xCC,0xCC,0xCC,0xCC,0xCC,0xCC, /* 00000090 "........" */ + 0xCC,0xCC,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB, /* 00000098 "........" */ + 0xBB,0xBB,0xAA,0xAA,0xAA,0xAA,0x99,0x99, /* 000000A0 "........" */ + 0x99,0x99,0x88,0x88 /* 000000A8 "...." */ +}; + const unsigned char TemplatePmtt[] = { 0x50,0x4D,0x54,0x54,0xB4,0x00,0x00,0x00, /* 00000000 "PMTT...." */ diff -Nru acpica-unix-20131115/source/compiler/dtutils.c acpica-unix-20140114/source/compiler/dtutils.c --- acpica-unix-20131115/source/compiler/dtutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/dtutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -532,6 +532,7 @@ case ACPI_DMT_ACCWIDTH: case ACPI_DMT_IVRS: case ACPI_DMT_MADT: + case ACPI_DMT_PCCT: case ACPI_DMT_PMTT: case ACPI_DMT_SRAT: case ACPI_DMT_ASF: diff -Nru acpica-unix-20131115/source/compiler/preprocess.h acpica-unix-20140114/source/compiler/preprocess.h --- acpica-unix-20131115/source/compiler/preprocess.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/preprocess.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prexpress.c acpica-unix-20140114/source/compiler/prexpress.c --- acpica-unix-20131115/source/compiler/prexpress.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prexpress.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prmacros.c acpica-unix-20140114/source/compiler/prmacros.c --- acpica-unix-20131115/source/compiler/prmacros.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prmacros.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prparser.l acpica-unix-20140114/source/compiler/prparser.l --- acpica-unix-20131115/source/compiler/prparser.l 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prparser.l 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prparser.y acpica-unix-20140114/source/compiler/prparser.y --- acpica-unix-20131115/source/compiler/prparser.y 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prparser.y 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prscan.c acpica-unix-20140114/source/compiler/prscan.c --- acpica-unix-20131115/source/compiler/prscan.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prscan.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/prutils.c acpica-unix-20140114/source/compiler/prutils.c --- acpica-unix-20131115/source/compiler/prutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/prutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/compiler/readme.txt acpica-unix-20140114/source/compiler/readme.txt --- acpica-unix-20131115/source/compiler/readme.txt 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/compiler/readme.txt 2014-01-28 13:06:26.000000000 +0000 @@ -1,8 +1,7 @@ /* * Miscellaneous instructions for building and using the iASL compiler. */ - -Last update: 24 October 2012 +Last update 9 December 2013. 1) Generating iASL from source @@ -30,17 +29,23 @@ 1a) Notes for Linux/Unix generation ----------------------------------- +iASL has been generated with these versions of Flex/Bison: + + flex: Version 2.5.32 + bison: Version 2.6.2 + +Other required packages: + + make + gcc C compiler + m4 (macro processor required by bison) + On Linux/Unix systems, the following commands will build the compiler: cd acpica (or cd acpica/generate/unix) make clean make iasl -iASL has been generated with these versions of Flex/Bison: - - Flex: Version 2.5.32 - Bison: Version 2.6.2 - 1b) Notes for Windows generation -------------------------------- @@ -58,12 +63,15 @@ c:\GnuWin32 Once the tools are installed, ensure that this path is added to the -default system $PATH environment variable: +default system $Path environment variable: c:\GnuWin32\bin -At this point, you will need to reboot Windows to make system aware of -the updated $PATH. +Goto: ControlPanel/System/AdvancedSystemSettings/EnvironmentVariables + +Important: Now Windows must be rebooted to make the system aware of +the updated $Path. Otherwise, Bison will not be able to find the M4 +interpreter library and will fail. iASL has been generated with these versions of Flex/Bison for Windows: diff -Nru acpica-unix-20131115/source/components/debugger/dbcmds.c acpica-unix-20140114/source/components/debugger/dbcmds.c --- acpica-unix-20131115/source/components/debugger/dbcmds.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbcmds.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbconvert.c acpica-unix-20140114/source/components/debugger/dbconvert.c --- acpica-unix-20131115/source/components/debugger/dbconvert.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbconvert.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbdisply.c acpica-unix-20140114/source/components/debugger/dbdisply.c --- acpica-unix-20131115/source/components/debugger/dbdisply.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbdisply.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbexec.c acpica-unix-20140114/source/components/debugger/dbexec.c --- acpica-unix-20131115/source/components/debugger/dbexec.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbexec.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbfileio.c acpica-unix-20140114/source/components/debugger/dbfileio.c --- acpica-unix-20131115/source/components/debugger/dbfileio.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbfileio.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -60,16 +60,6 @@ #define _COMPONENT ACPI_CA_DEBUGGER ACPI_MODULE_NAME ("dbfileio") -/* - * NOTE: this is here for lack of a better place. It is used in all - * flavors of the debugger, need LCD file - */ -#ifdef ACPI_APPLICATION -#include -FILE *AcpiGbl_DebugFile = NULL; -#endif - - #ifdef ACPI_DEBUGGER /* Local prototypes */ @@ -483,6 +473,7 @@ ACPI_TABLE_HEADER **Table) { FILE *File; + UINT32 FileSize; UINT32 TableLength; ACPI_STATUS Status; @@ -496,9 +487,17 @@ return (AE_ERROR); } + /* Get the file size */ + + fseek (File, 0, SEEK_END); + FileSize = (UINT32) ftell (File); + fseek (File, 0, SEEK_SET); + /* Get the entire file */ - fprintf (stderr, "Loading Acpi table from file %s\n", Filename); + fprintf (stderr, "Loading Acpi table from file %10s - Length %.8u (%06X)\n", + Filename, FileSize, FileSize); + Status = AcpiDbReadTable (File, Table, &TableLength); fclose(File); diff -Nru acpica-unix-20131115/source/components/debugger/dbhistry.c acpica-unix-20140114/source/components/debugger/dbhistry.c --- acpica-unix-20131115/source/components/debugger/dbhistry.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbhistry.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbinput.c acpica-unix-20140114/source/components/debugger/dbinput.c --- acpica-unix-20131115/source/components/debugger/dbinput.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbinput.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -93,7 +93,6 @@ CMD_ALLOCATIONS, CMD_ARGS, CMD_ARGUMENTS, - CMD_BATCH, CMD_BREAKPOINT, CMD_BUSINFO, CMD_CALL, @@ -128,7 +127,7 @@ CMD_METHODS, CMD_NAMESPACE, CMD_NOTIFY, - CMD_OBJECT, + CMD_OBJECTS, CMD_OPEN, CMD_OSI, CMD_OWNER, @@ -147,6 +146,7 @@ CMD_TABLES, CMD_TEMPLATE, CMD_TERMINATE, + CMD_TEST, CMD_THREADS, CMD_TRACE, CMD_TREE, @@ -166,7 +166,6 @@ {"ALLOCATIONS", 0}, {"ARGS", 0}, {"ARGUMENTS", 0}, - {"BATCH", 0}, {"BREAKPOINT", 1}, {"BUSINFO", 0}, {"CALL", 0}, @@ -201,7 +200,7 @@ {"METHODS", 0}, {"NAMESPACE", 0}, {"NOTIFY", 2}, - {"OBJECT", 1}, + {"OBJECTS", 1}, {"OPEN", 1}, {"OSI", 0}, {"OWNER", 1}, @@ -220,6 +219,7 @@ {"TABLES", 0}, {"TEMPLATE", 1}, {"TERMINATE", 0}, + {"TEST", 1}, {"THREADS", 3}, {"TRACE", 1}, {"TREE", 0}, @@ -246,8 +246,7 @@ {1, " Locks", "Current status of internal mutexes\n"}, {1, " Osi [Install|Remove ]", "Display or modify global _OSI list\n"}, {1, " Quit or Exit", "Exit this command\n"}, - {9, " Stats [Allocations|Memory|Misc|", "\n"}, - {1, " Objects|Sizes|Stack|Tables]", "Display namespace and memory statistics\n"}, + {8, " Stats ", "Display namespace and memory statistics\n"}, {1, " Allocations", "Display list of current memory allocations\n"}, {1, " Memory", "Dump internal memory lists\n"}, {1, " Misc", "Namespace search and mutex stats\n"}, @@ -315,6 +314,11 @@ {1, " Close", "Close debug output file\n"}, {1, " Load ", "Load ACPI table from a file\n"}, {1, " Open ", "Open a file for debug output\n"}, + + {0, "\nDebug Test Commands:", "\n"}, + {3, " Test ", "Invoke a debug test\n"}, + {1, " Objects", "Read/write/compare all namespace data objects\n"}, + {1, " Predefined", "Execute all ACPI predefined names (_STA, etc.)\n"}, {0, NULL, NULL} }; @@ -792,11 +796,6 @@ AcpiDbDisplayArguments (); break; - case CMD_BATCH: - - AcpiDbBatchExecute (AcpiGbl_DbArgs[1]); - break; - case CMD_BREAKPOINT: AcpiDbSetMethodBreakpoint (AcpiGbl_DbArgs[1], WalkState, Op); @@ -1000,7 +999,7 @@ AcpiDbSendNotify (AcpiGbl_DbArgs[1], Temp); break; - case CMD_OBJECT: + case CMD_OBJECTS: AcpiUtStrupr (AcpiGbl_DbArgs[1]); Status = AcpiDbDisplayObjects (AcpiGbl_DbArgs[1], AcpiGbl_DbArgs[2]); @@ -1099,6 +1098,11 @@ /* AcpiInitialize (NULL); */ break; + case CMD_TEST: + + AcpiDbExecuteTest (AcpiGbl_DbArgs[1]); + break; + case CMD_THREADS: AcpiDbCreateExecutionThreads (AcpiGbl_DbArgs[1], AcpiGbl_DbArgs[2], diff -Nru acpica-unix-20131115/source/components/debugger/dbmethod.c acpica-unix-20140114/source/components/debugger/dbmethod.c --- acpica-unix-20131115/source/components/debugger/dbmethod.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbmethod.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -58,16 +58,6 @@ ACPI_MODULE_NAME ("dbmethod") -/* Local prototypes */ - -static ACPI_STATUS -AcpiDbWalkForExecute ( - ACPI_HANDLE ObjHandle, - UINT32 NestingLevel, - void *Context, - void **ReturnValue); - - /******************************************************************************* * * FUNCTION: AcpiDbSetMethodBreakpoint @@ -414,195 +404,4 @@ return (AE_OK); } - -/******************************************************************************* - * - * FUNCTION: AcpiDbWalkForExecute - * - * PARAMETERS: Callback from WalkNamespace - * - * RETURN: Status - * - * DESCRIPTION: Batch execution module. Currently only executes predefined - * ACPI names. - * - ******************************************************************************/ - -static ACPI_STATUS -AcpiDbWalkForExecute ( - ACPI_HANDLE ObjHandle, - UINT32 NestingLevel, - void *Context, - void **ReturnValue) -{ - ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) ObjHandle; - ACPI_DB_EXECUTE_WALK *Info = (ACPI_DB_EXECUTE_WALK *) Context; - char *Pathname; - const ACPI_PREDEFINED_INFO *Predefined; - ACPI_DEVICE_INFO *ObjInfo; - ACPI_OBJECT_LIST ParamObjects; - ACPI_OBJECT Params[ACPI_METHOD_NUM_ARGS]; - ACPI_OBJECT *ThisParam; - ACPI_BUFFER ReturnObj; - ACPI_STATUS Status; - UINT16 ArgTypeList; - UINT8 ArgCount; - UINT8 ArgType; - UINT32 i; - - - /* The name must be a predefined ACPI name */ - - Predefined = AcpiUtMatchPredefinedMethod (Node->Name.Ascii); - if (!Predefined) - { - return (AE_OK); - } - - if (Node->Type == ACPI_TYPE_LOCAL_SCOPE) - { - return (AE_OK); - } - - Pathname = AcpiNsGetExternalPathname (Node); - if (!Pathname) - { - return (AE_OK); - } - - /* Get the object info for number of method parameters */ - - Status = AcpiGetObjectInfo (ObjHandle, &ObjInfo); - if (ACPI_FAILURE (Status)) - { - return (Status); - } - - ParamObjects.Count = 0; - ParamObjects.Pointer = NULL; - - if (ObjInfo->Type == ACPI_TYPE_METHOD) - { - /* Setup default parameters (with proper types) */ - - ArgTypeList = Predefined->Info.ArgumentList; - ArgCount = METHOD_GET_ARG_COUNT (ArgTypeList); - - /* - * Setup the ACPI-required number of arguments, regardless of what - * the actual method defines. If there is a difference, then the - * method is wrong and a warning will be issued during execution. - */ - ThisParam = Params; - for (i = 0; i < ArgCount; i++) - { - ArgType = METHOD_GET_NEXT_TYPE (ArgTypeList); - ThisParam->Type = ArgType; - - switch (ArgType) - { - case ACPI_TYPE_INTEGER: - - ThisParam->Integer.Value = 1; - break; - - case ACPI_TYPE_STRING: - - ThisParam->String.Pointer = "This is the default argument string"; - ThisParam->String.Length = ACPI_STRLEN (ThisParam->String.Pointer); - break; - - case ACPI_TYPE_BUFFER: - - ThisParam->Buffer.Pointer = (UINT8 *) Params; /* just a garbage buffer */ - ThisParam->Buffer.Length = 48; - break; - - case ACPI_TYPE_PACKAGE: - - ThisParam->Package.Elements = NULL; - ThisParam->Package.Count = 0; - break; - - default: - - AcpiOsPrintf ("%s: Unsupported argument type: %u\n", - Pathname, ArgType); - break; - } - - ThisParam++; - } - - ParamObjects.Count = ArgCount; - ParamObjects.Pointer = Params; - } - - ACPI_FREE (ObjInfo); - ReturnObj.Pointer = NULL; - ReturnObj.Length = ACPI_ALLOCATE_BUFFER; - - /* Do the actual method execution */ - - AcpiGbl_MethodExecuting = TRUE; - - Status = AcpiEvaluateObject (Node, NULL, &ParamObjects, &ReturnObj); - - AcpiOsPrintf ("%-32s returned %s\n", Pathname, AcpiFormatException (Status)); - AcpiGbl_MethodExecuting = FALSE; - ACPI_FREE (Pathname); - - /* Ignore status from method execution */ - - Status = AE_OK; - - /* Update count, check if we have executed enough methods */ - - Info->Count++; - if (Info->Count >= Info->MaxCount) - { - Status = AE_CTRL_TERMINATE; - } - - return (Status); -} - - -/******************************************************************************* - * - * FUNCTION: AcpiDbBatchExecute - * - * PARAMETERS: CountArg - Max number of methods to execute - * - * RETURN: None - * - * DESCRIPTION: Namespace batch execution. Execute predefined names in the - * namespace, up to the max count, if specified. - * - ******************************************************************************/ - -void -AcpiDbBatchExecute ( - char *CountArg) -{ - ACPI_DB_EXECUTE_WALK Info; - - - Info.Count = 0; - Info.MaxCount = ACPI_UINT32_MAX; - - if (CountArg) - { - Info.MaxCount = ACPI_STRTOUL (CountArg, NULL, 0); - } - - - /* Search all nodes in namespace */ - - (void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX, - AcpiDbWalkForExecute, NULL, (void *) &Info, NULL); - - AcpiOsPrintf ("Evaluated %u predefined names in the namespace\n", Info.Count); -} - #endif /* ACPI_DEBUGGER */ diff -Nru acpica-unix-20131115/source/components/debugger/dbnames.c acpica-unix-20140114/source/components/debugger/dbnames.c --- acpica-unix-20131115/source/components/debugger/dbnames.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbnames.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbstats.c acpica-unix-20140114/source/components/debugger/dbstats.c --- acpica-unix-20131115/source/components/debugger/dbstats.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbstats.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -401,7 +401,7 @@ AcpiUtStrupr (TypeArg); Temp = AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes); - if (Temp == (UINT32) -1) + if (Temp == ACPI_TYPE_NOT_FOUND) { AcpiOsPrintf ("Invalid or unsupported argument\n"); return (AE_OK); diff -Nru acpica-unix-20131115/source/components/debugger/dbtest.c acpica-unix-20140114/source/components/debugger/dbtest.c --- acpica-unix-20131115/source/components/debugger/dbtest.c 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbtest.c 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,1137 @@ +/******************************************************************************* + * + * Module Name: dbtest - Various debug-related tests + * + ******************************************************************************/ + +/* + * Copyright (C) 2000 - 2014, Intel Corp. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification. + * 2. Redistributions in binary form must reproduce at minimum a disclaimer + * substantially similar to the "NO WARRANTY" disclaimer below + * ("Disclaimer") and any redistribution must be conditioned upon + * including a substantially similar Disclaimer requirement for further + * binary redistribution. + * 3. Neither the names of the above-listed copyright holders nor the names + * of any contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * Alternatively, this software may be distributed under the terms of the + * GNU General Public License ("GPL") version 2 as published by the Free + * Software Foundation. + * + * NO WARRANTY + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + */ + +#include "acpi.h" +#include "accommon.h" +#include "acdebug.h" +#include "acnamesp.h" +#include "acpredef.h" + +#ifdef ACPI_DEBUGGER + +#define _COMPONENT ACPI_CA_DEBUGGER + ACPI_MODULE_NAME ("dbtest") + + +/* Local prototypes */ + +static void +AcpiDbTestAllObjects ( + void); + +static ACPI_STATUS +AcpiDbTestOneObject ( + ACPI_HANDLE ObjHandle, + UINT32 NestingLevel, + void *Context, + void **ReturnValue); + +static ACPI_STATUS +AcpiDbTestIntegerType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 BitLength); + +static ACPI_STATUS +AcpiDbTestBufferType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 BitLength); + +static ACPI_STATUS +AcpiDbTestStringType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 ByteLength); + +static ACPI_STATUS +AcpiDbReadFromObject ( + ACPI_NAMESPACE_NODE *Node, + ACPI_OBJECT_TYPE ExpectedType, + ACPI_OBJECT **Value); + +static ACPI_STATUS +AcpiDbWriteToObject ( + ACPI_NAMESPACE_NODE *Node, + ACPI_OBJECT *Value); + +static void +AcpiDbEvaluateAllPredefinedNames ( + char *CountArg); + +static ACPI_STATUS +AcpiDbEvaluateOnePredefinedName ( + ACPI_HANDLE ObjHandle, + UINT32 NestingLevel, + void *Context, + void **ReturnValue); + +/* + * Test subcommands + */ +static ACPI_DB_ARGUMENT_INFO AcpiDbTestTypes [] = +{ + {"OBJECTS"}, + {"PREDEFINED"}, + {NULL} /* Must be null terminated */ +}; + +#define CMD_TEST_OBJECTS 0 +#define CMD_TEST_PREDEFINED 1 + +#define BUFFER_FILL_VALUE 0xFF + +/* + * Support for the special debugger read/write control methods. + * These methods are installed into the current namespace and are + * used to read and write the various namespace objects. The point + * is to force the AML interpreter do all of the work. + */ +#define ACPI_DB_READ_METHOD "\\_T98" +#define ACPI_DB_WRITE_METHOD "\\_T99" + +static ACPI_HANDLE ReadHandle = NULL; +static ACPI_HANDLE WriteHandle = NULL; + +/* ASL Definitions of the debugger read/write control methods */ + +#if 0 +DefinitionBlock ("ssdt.aml", "SSDT", 2, "Intel", "DEBUG", 0x00000001) +{ + Method (_T98, 1, NotSerialized) /* Read */ + { + Return (DeRefOf (Arg0)) + } +} +DefinitionBlock ("ssdt2.aml", "SSDT", 2, "Intel", "DEBUG", 0x00000001) +{ + Method (_T99, 2, NotSerialized) /* Write */ + { + Store (Arg1, Arg0) + } +} +#endif + +static unsigned char ReadMethodCode[] = +{ + 0x53,0x53,0x44,0x54,0x2E,0x00,0x00,0x00, /* 00000000 "SSDT...." */ + 0x02,0xC9,0x49,0x6E,0x74,0x65,0x6C,0x00, /* 00000008 "..Intel." */ + 0x44,0x45,0x42,0x55,0x47,0x00,0x00,0x00, /* 00000010 "DEBUG..." */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x18,0x12,0x13,0x20,0x14,0x09,0x5F,0x54, /* 00000020 "... .._T" */ + 0x39,0x38,0x01,0xA4,0x83,0x68 /* 00000028 "98...h" */ +}; + +static unsigned char WriteMethodCode[] = +{ + 0x53,0x53,0x44,0x54,0x2E,0x00,0x00,0x00, /* 00000000 "SSDT...." */ + 0x02,0x15,0x49,0x6E,0x74,0x65,0x6C,0x00, /* 00000008 "..Intel." */ + 0x44,0x45,0x42,0x55,0x47,0x00,0x00,0x00, /* 00000010 "DEBUG..." */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x18,0x12,0x13,0x20,0x14,0x09,0x5F,0x54, /* 00000020 "... .._T" */ + 0x39,0x39,0x02,0x70,0x69,0x68 /* 00000028 "99.pih" */ +}; + + +/******************************************************************************* + * + * FUNCTION: AcpiDbExecuteTest + * + * PARAMETERS: TypeArg - Subcommand + * + * RETURN: None + * + * DESCRIPTION: Execute various debug tests. + * + * Note: Code is prepared for future expansion of the TEST command. + * + ******************************************************************************/ + +void +AcpiDbExecuteTest ( + char *TypeArg) +{ + UINT32 Temp; + + + AcpiUtStrupr (TypeArg); + Temp = AcpiDbMatchArgument (TypeArg, AcpiDbTestTypes); + if (Temp == ACPI_TYPE_NOT_FOUND) + { + AcpiOsPrintf ("Invalid or unsupported argument\n"); + return; + } + + switch (Temp) + { + case CMD_TEST_OBJECTS: + + AcpiDbTestAllObjects (); + break; + + case CMD_TEST_PREDEFINED: + + AcpiDbEvaluateAllPredefinedNames (NULL); + break; + + default: + break; + } +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbTestAllObjects + * + * PARAMETERS: None + * + * RETURN: None + * + * DESCRIPTION: This test implements the OBJECTS subcommand. It exercises the + * namespace by reading/writing/comparing all data objects such + * as integers, strings, buffers, fields, buffer fields, etc. + * + ******************************************************************************/ + +static void +AcpiDbTestAllObjects ( + void) +{ + ACPI_STATUS Status; + + + /* Install the debugger read-object control method if necessary */ + + if (!ReadHandle) + { + Status = AcpiInstallMethod (ReadMethodCode); + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("%s, Could not install debugger read method\n", + AcpiFormatException (Status)); + return; + } + + Status = AcpiGetHandle (NULL, ACPI_DB_READ_METHOD, &ReadHandle); + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("Could not obtain handle for debug method %s\n", + ACPI_DB_READ_METHOD); + return; + } + } + + /* Install the debugger write-object control method if necessary */ + + if (!WriteHandle) + { + Status = AcpiInstallMethod (WriteMethodCode); + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("%s, Could not install debugger write method\n", + AcpiFormatException (Status)); + return; + } + + Status = AcpiGetHandle (NULL, ACPI_DB_WRITE_METHOD, &WriteHandle); + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("Could not obtain handle for debug method %s\n", + ACPI_DB_WRITE_METHOD); + return; + } + } + + /* Walk the entire namespace, testing each supported named data object */ + + (void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, + ACPI_UINT32_MAX, AcpiDbTestOneObject, NULL, NULL, NULL); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbTestOneObject + * + * PARAMETERS: ACPI_WALK_CALLBACK + * + * RETURN: Status + * + * DESCRIPTION: Test one namespace object. Supported types are Integer, + * String, Buffer, BufferField, and FieldUnit. All other object + * types are simply ignored. + * + * Note: Support for Packages is not implemented. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbTestOneObject ( + ACPI_HANDLE ObjHandle, + UINT32 NestingLevel, + void *Context, + void **ReturnValue) +{ + ACPI_NAMESPACE_NODE *Node; + ACPI_OPERAND_OBJECT *ObjDesc; + ACPI_OPERAND_OBJECT *RegionObj; + ACPI_OBJECT_TYPE LocalType; + UINT32 BitLength = 0; + UINT32 ByteLength = 0; + ACPI_STATUS Status = AE_OK; + + + Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle); + ObjDesc = Node->Object; + + /* + * For the supported types, get the actual bit length or + * byte length. Map the type to one of Integer/String/Buffer. + */ + switch (Node->Type) + { + case ACPI_TYPE_INTEGER: + + /* Integer width is either 32 or 64 */ + + LocalType = ACPI_TYPE_INTEGER; + BitLength = AcpiGbl_IntegerBitWidth; + break; + + case ACPI_TYPE_STRING: + + LocalType = ACPI_TYPE_STRING; + ByteLength = ObjDesc->String.Length; + break; + + case ACPI_TYPE_BUFFER: + + LocalType = ACPI_TYPE_BUFFER; + ByteLength = ObjDesc->Buffer.Length; + BitLength = ByteLength * 8; + break; + + case ACPI_TYPE_FIELD_UNIT: + case ACPI_TYPE_BUFFER_FIELD: + case ACPI_TYPE_LOCAL_REGION_FIELD: + case ACPI_TYPE_LOCAL_INDEX_FIELD: + case ACPI_TYPE_LOCAL_BANK_FIELD: + + LocalType = ACPI_TYPE_INTEGER; + if (ObjDesc) + { + /* + * Returned object will be a Buffer if the field length + * is larger than the size of an Integer (32 or 64 bits + * depending on the DSDT version). + */ + BitLength = ObjDesc->CommonField.BitLength; + ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); + if (BitLength > AcpiGbl_IntegerBitWidth) + { + LocalType = ACPI_TYPE_BUFFER; + } + } + break; + + default: + + /* Ignore all other types */ + + return (AE_OK); + } + + /* Emit the common prefix: Type:Name */ + + AcpiOsPrintf ("%14s: %4.4s", + AcpiUtGetTypeName (Node->Type), Node->Name.Ascii); + if (!ObjDesc) + { + AcpiOsPrintf (" Ignoring, no attached object\n"); + return (AE_OK); + } + + /* + * Check for unsupported region types. Note: AcpiExec simulates + * access to SystemMemory, SystemIO, PCI_Config, and EC. + */ + switch (Node->Type) + { + case ACPI_TYPE_LOCAL_REGION_FIELD: + + RegionObj = ObjDesc->Field.RegionObj; + switch (RegionObj->Region.SpaceId) + { + case ACPI_ADR_SPACE_SYSTEM_MEMORY: + case ACPI_ADR_SPACE_SYSTEM_IO: + case ACPI_ADR_SPACE_PCI_CONFIG: + case ACPI_ADR_SPACE_EC: + + break; + + default: + + AcpiOsPrintf (" %s space is not supported [%4.4s]\n", + AcpiUtGetRegionName (RegionObj->Region.SpaceId), + RegionObj->Region.Node->Name.Ascii); + return (AE_OK); + } + break; + + default: + break; + } + + /* At this point, we have resolved the object to one of the major types */ + + switch (LocalType) + { + case ACPI_TYPE_INTEGER: + + Status = AcpiDbTestIntegerType (Node, BitLength); + break; + + case ACPI_TYPE_STRING: + + Status = AcpiDbTestStringType (Node, ByteLength); + break; + + case ACPI_TYPE_BUFFER: + + Status = AcpiDbTestBufferType (Node, BitLength); + break; + + default: + + AcpiOsPrintf (" Ignoring, type not implemented (%2.2X)", + LocalType); + break; + } + + switch (Node->Type) + { + case ACPI_TYPE_LOCAL_REGION_FIELD: + + RegionObj = ObjDesc->Field.RegionObj; + AcpiOsPrintf (" (%s)", + AcpiUtGetRegionName (RegionObj->Region.SpaceId)); + break; + + default: + break; + } + + AcpiOsPrintf ("\n"); + return (Status); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbTestIntegerType + * + * PARAMETERS: Node - Parent NS node for the object + * BitLength - Actual length of the object. Used for + * support of arbitrary length FieldUnit + * and BufferField objects. + * + * RETURN: Status + * + * DESCRIPTION: Test read/write for an Integer-valued object. Performs a + * write/read/compare of an arbitrary new value, then performs + * a write/read/compare of the original value. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbTestIntegerType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 BitLength) +{ + ACPI_OBJECT *Temp1 = NULL; + ACPI_OBJECT *Temp2 = NULL; + ACPI_OBJECT *Temp3 = NULL; + ACPI_OBJECT WriteValue; + UINT64 ValueToWrite; + ACPI_STATUS Status; + + + if (BitLength > 64) + { + AcpiOsPrintf (" Invalid length for an Integer: %u", BitLength); + return (AE_OK); + } + + /* Read the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_INTEGER, &Temp1); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + AcpiOsPrintf (" (%4.4X/%3.3X) %8.8X%8.8X", + BitLength, ACPI_ROUND_BITS_UP_TO_BYTES (BitLength), + ACPI_FORMAT_UINT64 (Temp1->Integer.Value)); + + ValueToWrite = ACPI_UINT64_MAX >> (64 - BitLength); + if (Temp1->Integer.Value == ValueToWrite) + { + ValueToWrite = 0; + } + + /* Write a new value */ + + WriteValue.Type = ACPI_TYPE_INTEGER; + WriteValue.Integer.Value = ValueToWrite; + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the new value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_INTEGER, &Temp2); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (Temp2->Integer.Value != ValueToWrite) + { + AcpiOsPrintf (" MISMATCH 2: %8.8X%8.8X, expecting %8.8X%8.8X", + ACPI_FORMAT_UINT64 (Temp2->Integer.Value), + ACPI_FORMAT_UINT64 (ValueToWrite)); + } + + /* Write back the original value */ + + WriteValue.Integer.Value = Temp1->Integer.Value; + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_INTEGER, &Temp3); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (Temp3->Integer.Value != Temp1->Integer.Value) + { + AcpiOsPrintf (" MISMATCH 3: %8.8X%8.8X, expecting %8.8X%8.8X", + ACPI_FORMAT_UINT64 (Temp3->Integer.Value), + ACPI_FORMAT_UINT64 (Temp1->Integer.Value)); + } + +Exit: + if (Temp1) {AcpiOsFree (Temp1);} + if (Temp2) {AcpiOsFree (Temp2);} + if (Temp3) {AcpiOsFree (Temp3);} + return (AE_OK); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbTestBufferType + * + * PARAMETERS: Node - Parent NS node for the object + * BitLength - Actual length of the object. + * + * RETURN: Status + * + * DESCRIPTION: Test read/write for an Buffer-valued object. Performs a + * write/read/compare of an arbitrary new value, then performs + * a write/read/compare of the original value. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbTestBufferType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 BitLength) +{ + ACPI_OBJECT *Temp1 = NULL; + ACPI_OBJECT *Temp2 = NULL; + ACPI_OBJECT *Temp3 = NULL; + UINT8 *Buffer; + ACPI_OBJECT WriteValue; + ACPI_STATUS Status; + UINT32 ByteLength; + UINT32 i; + UINT8 ExtraBits; + + + ByteLength = ACPI_ROUND_BITS_UP_TO_BYTES (BitLength); + if (ByteLength == 0) + { + AcpiOsPrintf (" Ignoring zero length buffer"); + return (AE_OK); + } + + /* Allocate a local buffer */ + + Buffer = ACPI_ALLOCATE_ZEROED (ByteLength); + if (!Buffer) + { + return (AE_NO_MEMORY); + } + + /* Read the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_BUFFER, &Temp1); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Emit a few bytes of the buffer */ + + AcpiOsPrintf (" (%4.4X/%3.3X)", BitLength, Temp1->Buffer.Length); + for (i = 0; ((i < 4) && (i < ByteLength)); i++) + { + AcpiOsPrintf (" %2.2X", Temp1->Buffer.Pointer[i]); + } + AcpiOsPrintf ("... "); + + /* + * Write a new value. + * + * Handle possible extra bits at the end of the buffer. Can + * happen for FieldUnits larger than an integer, but the bit + * count is not an integral number of bytes. Zero out the + * unused bits. + */ + ACPI_MEMSET (Buffer, BUFFER_FILL_VALUE, ByteLength); + ExtraBits = BitLength % 8; + if (ExtraBits) + { + Buffer [ByteLength - 1] = ACPI_MASK_BITS_ABOVE (ExtraBits); + } + + WriteValue.Type = ACPI_TYPE_BUFFER; + WriteValue.Buffer.Length = ByteLength; + WriteValue.Buffer.Pointer = Buffer; + + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the new value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_BUFFER, &Temp2); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (ACPI_MEMCMP (Temp2->Buffer.Pointer, Buffer, ByteLength)) + { + AcpiOsPrintf (" MISMATCH 2: New buffer value"); + } + + /* Write back the original value */ + + WriteValue.Buffer.Length = ByteLength; + WriteValue.Buffer.Pointer = Temp1->Buffer.Pointer; + + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_BUFFER, &Temp3); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (ACPI_MEMCMP (Temp1->Buffer.Pointer, Temp3->Buffer.Pointer, ByteLength)) + { + AcpiOsPrintf (" MISMATCH 3: While restoring original buffer"); + } + +Exit: + ACPI_FREE (Buffer); + if (Temp1) {AcpiOsFree (Temp1);} + if (Temp2) {AcpiOsFree (Temp2);} + if (Temp3) {AcpiOsFree (Temp3);} + return (Status); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbTestStringType + * + * PARAMETERS: Node - Parent NS node for the object + * ByteLength - Actual length of the object. + * + * RETURN: Status + * + * DESCRIPTION: Test read/write for an String-valued object. Performs a + * write/read/compare of an arbitrary new value, then performs + * a write/read/compare of the original value. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbTestStringType ( + ACPI_NAMESPACE_NODE *Node, + UINT32 ByteLength) +{ + ACPI_OBJECT *Temp1 = NULL; + ACPI_OBJECT *Temp2 = NULL; + ACPI_OBJECT *Temp3 = NULL; + char *ValueToWrite = "Test String from AML Debugger"; + ACPI_OBJECT WriteValue; + ACPI_STATUS Status; + + + /* Read the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_STRING, &Temp1); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + AcpiOsPrintf (" (%4.4X/%3.3X) \"%s\"", (Temp1->String.Length * 8), + Temp1->String.Length, Temp1->String.Pointer); + + /* Write a new value */ + + WriteValue.Type = ACPI_TYPE_STRING; + WriteValue.String.Length = ACPI_STRLEN (ValueToWrite); + WriteValue.String.Pointer = ValueToWrite; + + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the new value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_STRING, &Temp2); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (ACPI_STRCMP (Temp2->String.Pointer, ValueToWrite)) + { + AcpiOsPrintf (" MISMATCH 2: %s, expecting %s", + Temp2->String.Pointer, ValueToWrite); + } + + /* Write back the original value */ + + WriteValue.String.Length = ACPI_STRLEN (Temp1->String.Pointer); + WriteValue.String.Pointer = Temp1->String.Pointer; + + Status = AcpiDbWriteToObject (Node, &WriteValue); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + /* Ensure that we can read back the original value */ + + Status = AcpiDbReadFromObject (Node, ACPI_TYPE_STRING, &Temp3); + if (ACPI_FAILURE (Status)) + { + goto Exit; + } + + if (ACPI_STRCMP (Temp1->String.Pointer, Temp3->String.Pointer)) + { + AcpiOsPrintf (" MISMATCH 3: %s, expecting %s", + Temp3->String.Pointer, Temp1->String.Pointer); + } + +Exit: + if (Temp1) {AcpiOsFree (Temp1);} + if (Temp2) {AcpiOsFree (Temp2);} + if (Temp3) {AcpiOsFree (Temp3);} + return (Status); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbReadFromObject + * + * PARAMETERS: Node - Parent NS node for the object + * ExpectedType - Object type expected from the read + * Value - Where the value read is returned + * + * RETURN: Status + * + * DESCRIPTION: Performs a read from the specified object by invoking the + * special debugger control method that reads the object. Thus, + * the AML interpreter is doing all of the work, increasing the + * validity of the test. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbReadFromObject ( + ACPI_NAMESPACE_NODE *Node, + ACPI_OBJECT_TYPE ExpectedType, + ACPI_OBJECT **Value) +{ + ACPI_OBJECT *RetValue; + ACPI_OBJECT_LIST ParamObjects; + ACPI_OBJECT Params[2]; + ACPI_BUFFER ReturnObj; + ACPI_STATUS Status; + + + Params[0].Type = ACPI_TYPE_LOCAL_REFERENCE; + Params[0].Reference.ActualType = Node->Type; + Params[0].Reference.Handle = ACPI_CAST_PTR (ACPI_HANDLE, Node); + + ParamObjects.Count = 1; + ParamObjects.Pointer = Params; + + ReturnObj.Length = ACPI_ALLOCATE_BUFFER; + + AcpiGbl_MethodExecuting = TRUE; + Status = AcpiEvaluateObject (ReadHandle, NULL, &ParamObjects, &ReturnObj); + AcpiGbl_MethodExecuting = FALSE; + + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("Could not read from object, %s", + AcpiFormatException (Status)); + return (Status); + } + + RetValue = (ACPI_OBJECT *) ReturnObj.Pointer; + + switch (RetValue->Type) + { + case ACPI_TYPE_INTEGER: + case ACPI_TYPE_BUFFER: + case ACPI_TYPE_STRING: + /* + * Did we receive the type we wanted? Most important for the + * Integer/Buffer case (when a field is larger than an Integer, + * it should return a Buffer). + */ + if (RetValue->Type != ExpectedType) + { + AcpiOsPrintf (" Type mismatch: Expected %s, Received %s", + AcpiUtGetTypeName (ExpectedType), + AcpiUtGetTypeName (RetValue->Type)); + + return (AE_TYPE); + } + + *Value = RetValue; + break; + + default: + + AcpiOsPrintf (" Unsupported return object type, %s", + AcpiUtGetTypeName (RetValue->Type)); + AcpiOsFree (ReturnObj.Pointer); + + return (AE_TYPE); + } + + return (Status); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbWriteToObject + * + * PARAMETERS: Node - Parent NS node for the object + * Value - Value to be written + * + * RETURN: Status + * + * DESCRIPTION: Performs a write to the specified object by invoking the + * special debugger control method that writes the object. Thus, + * the AML interpreter is doing all of the work, increasing the + * validity of the test. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbWriteToObject ( + ACPI_NAMESPACE_NODE *Node, + ACPI_OBJECT *Value) +{ + ACPI_OBJECT_LIST ParamObjects; + ACPI_OBJECT Params[2]; + ACPI_STATUS Status; + + + Params[0].Type = ACPI_TYPE_LOCAL_REFERENCE; + Params[0].Reference.ActualType = Node->Type; + Params[0].Reference.Handle = ACPI_CAST_PTR (ACPI_HANDLE, Node); + + /* Copy the incoming user parameter */ + + ACPI_MEMCPY (&Params[1], Value, sizeof (ACPI_OBJECT)); + + ParamObjects.Count = 2; + ParamObjects.Pointer = Params; + + AcpiGbl_MethodExecuting = TRUE; + Status = AcpiEvaluateObject (WriteHandle, NULL, &ParamObjects, NULL); + AcpiGbl_MethodExecuting = FALSE; + + if (ACPI_FAILURE (Status)) + { + AcpiOsPrintf ("Could not write to object, %s", + AcpiFormatException (Status)); + } + + return (Status); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbEvaluateAllPredefinedNames + * + * PARAMETERS: CountArg - Max number of methods to execute + * + * RETURN: None + * + * DESCRIPTION: Namespace batch execution. Execute predefined names in the + * namespace, up to the max count, if specified. + * + ******************************************************************************/ + +static void +AcpiDbEvaluateAllPredefinedNames ( + char *CountArg) +{ + ACPI_DB_EXECUTE_WALK Info; + + + Info.Count = 0; + Info.MaxCount = ACPI_UINT32_MAX; + + if (CountArg) + { + Info.MaxCount = ACPI_STRTOUL (CountArg, NULL, 0); + } + + /* Search all nodes in namespace */ + + (void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX, + AcpiDbEvaluateOnePredefinedName, NULL, (void *) &Info, NULL); + + AcpiOsPrintf ("Evaluated %u predefined names in the namespace\n", Info.Count); +} + + +/******************************************************************************* + * + * FUNCTION: AcpiDbEvaluateOnePredefinedName + * + * PARAMETERS: Callback from WalkNamespace + * + * RETURN: Status + * + * DESCRIPTION: Batch execution module. Currently only executes predefined + * ACPI names. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiDbEvaluateOnePredefinedName ( + ACPI_HANDLE ObjHandle, + UINT32 NestingLevel, + void *Context, + void **ReturnValue) +{ + ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) ObjHandle; + ACPI_DB_EXECUTE_WALK *Info = (ACPI_DB_EXECUTE_WALK *) Context; + char *Pathname; + const ACPI_PREDEFINED_INFO *Predefined; + ACPI_DEVICE_INFO *ObjInfo; + ACPI_OBJECT_LIST ParamObjects; + ACPI_OBJECT Params[ACPI_METHOD_NUM_ARGS]; + ACPI_OBJECT *ThisParam; + ACPI_BUFFER ReturnObj; + ACPI_STATUS Status; + UINT16 ArgTypeList; + UINT8 ArgCount; + UINT8 ArgType; + UINT32 i; + + + /* The name must be a predefined ACPI name */ + + Predefined = AcpiUtMatchPredefinedMethod (Node->Name.Ascii); + if (!Predefined) + { + return (AE_OK); + } + + if (Node->Type == ACPI_TYPE_LOCAL_SCOPE) + { + return (AE_OK); + } + + Pathname = AcpiNsGetExternalPathname (Node); + if (!Pathname) + { + return (AE_OK); + } + + /* Get the object info for number of method parameters */ + + Status = AcpiGetObjectInfo (ObjHandle, &ObjInfo); + if (ACPI_FAILURE (Status)) + { + return (Status); + } + + ParamObjects.Count = 0; + ParamObjects.Pointer = NULL; + + if (ObjInfo->Type == ACPI_TYPE_METHOD) + { + /* Setup default parameters (with proper types) */ + + ArgTypeList = Predefined->Info.ArgumentList; + ArgCount = METHOD_GET_ARG_COUNT (ArgTypeList); + + /* + * Setup the ACPI-required number of arguments, regardless of what + * the actual method defines. If there is a difference, then the + * method is wrong and a warning will be issued during execution. + */ + ThisParam = Params; + for (i = 0; i < ArgCount; i++) + { + ArgType = METHOD_GET_NEXT_TYPE (ArgTypeList); + ThisParam->Type = ArgType; + + switch (ArgType) + { + case ACPI_TYPE_INTEGER: + + ThisParam->Integer.Value = 1; + break; + + case ACPI_TYPE_STRING: + + ThisParam->String.Pointer = "This is the default argument string"; + ThisParam->String.Length = ACPI_STRLEN (ThisParam->String.Pointer); + break; + + case ACPI_TYPE_BUFFER: + + ThisParam->Buffer.Pointer = (UINT8 *) Params; /* just a garbage buffer */ + ThisParam->Buffer.Length = 48; + break; + + case ACPI_TYPE_PACKAGE: + + ThisParam->Package.Elements = NULL; + ThisParam->Package.Count = 0; + break; + + default: + + AcpiOsPrintf ("%s: Unsupported argument type: %u\n", + Pathname, ArgType); + break; + } + + ThisParam++; + } + + ParamObjects.Count = ArgCount; + ParamObjects.Pointer = Params; + } + + ACPI_FREE (ObjInfo); + ReturnObj.Pointer = NULL; + ReturnObj.Length = ACPI_ALLOCATE_BUFFER; + + /* Do the actual method execution */ + + AcpiGbl_MethodExecuting = TRUE; + + Status = AcpiEvaluateObject (Node, NULL, &ParamObjects, &ReturnObj); + + AcpiOsPrintf ("%-32s returned %s\n", Pathname, AcpiFormatException (Status)); + AcpiGbl_MethodExecuting = FALSE; + ACPI_FREE (Pathname); + + /* Ignore status from method execution */ + + Status = AE_OK; + + /* Update count, check if we have executed enough methods */ + + Info->Count++; + if (Info->Count >= Info->MaxCount) + { + Status = AE_CTRL_TERMINATE; + } + + return (Status); +} + +#endif /* ACPI_DEBUGGER */ diff -Nru acpica-unix-20131115/source/components/debugger/dbutils.c acpica-unix-20140114/source/components/debugger/dbutils.c --- acpica-unix-20131115/source/components/debugger/dbutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/debugger/dbxface.c acpica-unix-20140114/source/components/debugger/dbxface.c --- acpica-unix-20131115/source/components/debugger/dbxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/debugger/dbxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmbuffer.c acpica-unix-20140114/source/components/disassembler/dmbuffer.c --- acpica-unix-20131115/source/components/disassembler/dmbuffer.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmbuffer.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmdeferred.c acpica-unix-20140114/source/components/disassembler/dmdeferred.c --- acpica-unix-20131115/source/components/disassembler/dmdeferred.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmdeferred.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmnames.c acpica-unix-20140114/source/components/disassembler/dmnames.c --- acpica-unix-20131115/source/components/disassembler/dmnames.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmnames.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmobject.c acpica-unix-20140114/source/components/disassembler/dmobject.c --- acpica-unix-20131115/source/components/disassembler/dmobject.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmobject.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmopcode.c acpica-unix-20140114/source/components/disassembler/dmopcode.c --- acpica-unix-20131115/source/components/disassembler/dmopcode.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmopcode.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmresrc.c acpica-unix-20140114/source/components/disassembler/dmresrc.c --- acpica-unix-20131115/source/components/disassembler/dmresrc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmresrc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmresrcl.c acpica-unix-20140114/source/components/disassembler/dmresrcl.c --- acpica-unix-20131115/source/components/disassembler/dmresrcl.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmresrcl.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmresrcl2.c acpica-unix-20140114/source/components/disassembler/dmresrcl2.c --- acpica-unix-20131115/source/components/disassembler/dmresrcl2.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmresrcl2.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmresrcs.c acpica-unix-20140114/source/components/disassembler/dmresrcs.c --- acpica-unix-20131115/source/components/disassembler/dmresrcs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmresrcs.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmutils.c acpica-unix-20140114/source/components/disassembler/dmutils.c --- acpica-unix-20131115/source/components/disassembler/dmutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/disassembler/dmwalk.c acpica-unix-20140114/source/components/disassembler/dmwalk.c --- acpica-unix-20131115/source/components/disassembler/dmwalk.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/disassembler/dmwalk.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsargs.c acpica-unix-20140114/source/components/dispatcher/dsargs.c --- acpica-unix-20131115/source/components/dispatcher/dsargs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsargs.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dscontrol.c acpica-unix-20140114/source/components/dispatcher/dscontrol.c --- acpica-unix-20131115/source/components/dispatcher/dscontrol.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dscontrol.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsfield.c acpica-unix-20140114/source/components/dispatcher/dsfield.c --- acpica-unix-20131115/source/components/dispatcher/dsfield.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsfield.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -116,7 +116,7 @@ * OperationRegion not found. Generate an External for it, and * insert the name into the namespace. */ - AcpiDmAddToExternalList (Op, Path, ACPI_TYPE_REGION, 0); + AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_REGION, 0, 0); Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ACPI_TYPE_REGION, ACPI_IMODE_LOAD_PASS1, ACPI_NS_SEARCH_PARENT, WalkState, Node); if (ACPI_FAILURE (Status)) diff -Nru acpica-unix-20131115/source/components/dispatcher/dsinit.c acpica-unix-20140114/source/components/dispatcher/dsinit.c --- acpica-unix-20131115/source/components/dispatcher/dsinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsmethod.c acpica-unix-20140114/source/components/dispatcher/dsmethod.c --- acpica-unix-20131115/source/components/dispatcher/dsmethod.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsmethod.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsmthdat.c acpica-unix-20140114/source/components/dispatcher/dsmthdat.c --- acpica-unix-20131115/source/components/dispatcher/dsmthdat.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsmthdat.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsobject.c acpica-unix-20140114/source/components/dispatcher/dsobject.c --- acpica-unix-20131115/source/components/dispatcher/dsobject.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsobject.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsopcode.c acpica-unix-20140114/source/components/dispatcher/dsopcode.c --- acpica-unix-20131115/source/components/dispatcher/dsopcode.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsopcode.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dsutils.c acpica-unix-20140114/source/components/dispatcher/dsutils.c --- acpica-unix-20131115/source/components/dispatcher/dsutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dsutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -779,16 +779,16 @@ Index++; } - Index--; + ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, + "NumOperands %d, ArgCount %d, Index %d\n", + WalkState->NumOperands, ArgCount, Index)); - /* It is the appropriate order to get objects from the Result stack */ + /* Create the interpreter arguments, in reverse order */ + Index--; for (i = 0; i < ArgCount; i++) { Arg = Arguments[Index]; - - /* Force the filling of the operand stack in inverse order */ - WalkState->OperandIndex = (UINT8) Index; Status = AcpiDsCreateOperand (WalkState, Arg, Index); @@ -797,10 +797,10 @@ goto Cleanup; } + ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, + "Created Arg #%u (%p) %u args total\n", + Index, Arg, ArgCount)); Index--; - - ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Arg #%u (%p) done, Arg1=%p\n", - Index, Arg, FirstArg)); } return_ACPI_STATUS (Status); diff -Nru acpica-unix-20131115/source/components/dispatcher/dswexec.c acpica-unix-20140114/source/components/dispatcher/dswexec.c --- acpica-unix-20131115/source/components/dispatcher/dswexec.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dswexec.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -541,7 +541,8 @@ return_ACPI_STATUS (AE_OK); } - ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Method invocation, Op=%p\n", Op)); + ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, + "Method invocation, Op=%p\n", Op)); /* * (AML_METHODCALL) Op->Asl.Value.Arg->Asl.Node contains diff -Nru acpica-unix-20131115/source/components/dispatcher/dswload.c acpica-unix-20140114/source/components/dispatcher/dswload.c --- acpica-unix-20131115/source/components/dispatcher/dswload.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dswload.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -193,7 +193,7 @@ * Target of Scope() not found. Generate an External for it, and * insert the name into the namespace. */ - AcpiDmAddToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0); + AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0, 0); Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType, ACPI_IMODE_LOAD_PASS1, ACPI_NS_SEARCH_PARENT, WalkState, &Node); diff -Nru acpica-unix-20131115/source/components/dispatcher/dswload2.c acpica-unix-20140114/source/components/dispatcher/dswload2.c --- acpica-unix-20131115/source/components/dispatcher/dswload2.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dswload2.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dswscope.c acpica-unix-20140114/source/components/dispatcher/dswscope.c --- acpica-unix-20131115/source/components/dispatcher/dswscope.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dswscope.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/dispatcher/dswstate.c acpica-unix-20140114/source/components/dispatcher/dswstate.c --- acpica-unix-20131115/source/components/dispatcher/dswstate.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/dispatcher/dswstate.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evevent.c acpica-unix-20140114/source/components/events/evevent.c --- acpica-unix-20131115/source/components/events/evevent.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evevent.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evglock.c acpica-unix-20140114/source/components/events/evglock.c --- acpica-unix-20131115/source/components/events/evglock.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evglock.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evgpe.c acpica-unix-20140114/source/components/events/evgpe.c --- acpica-unix-20131115/source/components/events/evgpe.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evgpe.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evgpeblk.c acpica-unix-20140114/source/components/events/evgpeblk.c --- acpica-unix-20131115/source/components/events/evgpeblk.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evgpeblk.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -97,10 +97,9 @@ return_ACPI_STATUS (Status); } - GpeXruptBlock = AcpiEvGetGpeXruptBlock (InterruptNumber); - if (!GpeXruptBlock) + Status = AcpiEvGetGpeXruptBlock (InterruptNumber, &GpeXruptBlock); + if (ACPI_FAILURE (Status)) { - Status = AE_NO_MEMORY; goto UnlockAndExit; } @@ -128,7 +127,7 @@ UnlockAndExit: - Status = AcpiUtReleaseMutex (ACPI_MTX_EVENTS); + (void) AcpiUtReleaseMutex (ACPI_MTX_EVENTS); return_ACPI_STATUS (Status); } diff -Nru acpica-unix-20131115/source/components/events/evgpeinit.c acpica-unix-20140114/source/components/events/evgpeinit.c --- acpica-unix-20131115/source/components/events/evgpeinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evgpeinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evgpeutil.c acpica-unix-20140114/source/components/events/evgpeutil.c --- acpica-unix-20131115/source/components/events/evgpeutil.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evgpeutil.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -217,8 +217,9 @@ * FUNCTION: AcpiEvGetGpeXruptBlock * * PARAMETERS: InterruptNumber - Interrupt for a GPE block + * GpeXruptBlock - Where the block is returned * - * RETURN: A GPE interrupt block + * RETURN: Status * * DESCRIPTION: Get or Create a GPE interrupt block. There is one interrupt * block per unique interrupt level used for GPEs. Should be @@ -227,9 +228,10 @@ * ******************************************************************************/ -ACPI_GPE_XRUPT_INFO * +ACPI_STATUS AcpiEvGetGpeXruptBlock ( - UINT32 InterruptNumber) + UINT32 InterruptNumber, + ACPI_GPE_XRUPT_INFO **GpeXruptBlock) { ACPI_GPE_XRUPT_INFO *NextGpeXrupt; ACPI_GPE_XRUPT_INFO *GpeXrupt; @@ -247,7 +249,8 @@ { if (NextGpeXrupt->InterruptNumber == InterruptNumber) { - return_PTR (NextGpeXrupt); + *GpeXruptBlock = NextGpeXrupt; + return_ACPI_STATUS (AE_OK); } NextGpeXrupt = NextGpeXrupt->Next; @@ -258,7 +261,7 @@ GpeXrupt = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_GPE_XRUPT_INFO)); if (!GpeXrupt) { - return_PTR (NULL); + return_ACPI_STATUS (AE_NO_MEMORY); } GpeXrupt->InterruptNumber = InterruptNumber; @@ -281,6 +284,7 @@ { AcpiGbl_GpeXruptListHead = GpeXrupt; } + AcpiOsReleaseLock (AcpiGbl_GpeLock, Flags); /* Install new interrupt handler if not SCI_INT */ @@ -291,14 +295,15 @@ AcpiEvGpeXruptHandler, GpeXrupt); if (ACPI_FAILURE (Status)) { - ACPI_ERROR ((AE_INFO, + ACPI_EXCEPTION ((AE_INFO, Status, "Could not install GPE interrupt handler at level 0x%X", InterruptNumber)); - return_PTR (NULL); + return_ACPI_STATUS (Status); } } - return_PTR (GpeXrupt); + *GpeXruptBlock = GpeXrupt; + return_ACPI_STATUS (AE_OK); } diff -Nru acpica-unix-20131115/source/components/events/evhandler.c acpica-unix-20140114/source/components/events/evhandler.c --- acpica-unix-20131115/source/components/events/evhandler.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evhandler.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evmisc.c acpica-unix-20140114/source/components/events/evmisc.c --- acpica-unix-20131115/source/components/events/evmisc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evmisc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evregion.c acpica-unix-20140114/source/components/events/evregion.c --- acpica-unix-20131115/source/components/events/evregion.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evregion.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evrgnini.c acpica-unix-20140114/source/components/events/evrgnini.c --- acpica-unix-20131115/source/components/events/evrgnini.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evrgnini.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evsci.c acpica-unix-20140114/source/components/events/evsci.c --- acpica-unix-20131115/source/components/events/evsci.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evsci.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evxface.c acpica-unix-20140114/source/components/events/evxface.c --- acpica-unix-20131115/source/components/events/evxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evxfevnt.c acpica-unix-20140114/source/components/events/evxfevnt.c --- acpica-unix-20131115/source/components/events/evxfevnt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evxfevnt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/events/evxfgpe.c acpica-unix-20140114/source/components/events/evxfgpe.c --- acpica-unix-20131115/source/components/events/evxfgpe.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evxfgpe.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -791,6 +791,20 @@ goto UnlockAndExit; } + /* Validate the parent device */ + + if (Node->Type != ACPI_TYPE_DEVICE) + { + Status = AE_TYPE; + goto UnlockAndExit; + } + + if (Node->Object) + { + Status = AE_ALREADY_EXISTS; + goto UnlockAndExit; + } + /* * For user-installed GPE Block Devices, the GpeBlockBaseNumber * is always zero @@ -884,6 +898,14 @@ goto UnlockAndExit; } + /* Validate the parent device */ + + if (Node->Type != ACPI_TYPE_DEVICE) + { + Status = AE_TYPE; + goto UnlockAndExit; + } + /* Get the DeviceObject attached to the node */ ObjDesc = AcpiNsGetAttachedObject (Node); diff -Nru acpica-unix-20131115/source/components/events/evxfregn.c acpica-unix-20140114/source/components/events/evxfregn.c --- acpica-unix-20131115/source/components/events/evxfregn.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/events/evxfregn.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exconfig.c acpica-unix-20140114/source/components/executer/exconfig.c --- acpica-unix-20131115/source/components/executer/exconfig.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exconfig.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exconvrt.c acpica-unix-20140114/source/components/executer/exconvrt.c --- acpica-unix-20131115/source/components/executer/exconvrt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exconvrt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/excreate.c acpica-unix-20140114/source/components/executer/excreate.c --- acpica-unix-20131115/source/components/executer/excreate.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/excreate.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exdebug.c acpica-unix-20140114/source/components/executer/exdebug.c --- acpica-unix-20131115/source/components/executer/exdebug.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exdebug.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exdump.c acpica-unix-20140114/source/components/executer/exdump.c --- acpica-unix-20131115/source/components/executer/exdump.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exdump.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exfield.c acpica-unix-20140114/source/components/executer/exfield.c --- acpica-unix-20131115/source/components/executer/exfield.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exfield.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exfldio.c acpica-unix-20140114/source/components/executer/exfldio.c --- acpica-unix-20131115/source/components/executer/exfldio.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exfldio.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exmisc.c acpica-unix-20140114/source/components/executer/exmisc.c --- acpica-unix-20131115/source/components/executer/exmisc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exmisc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exmutex.c acpica-unix-20140114/source/components/executer/exmutex.c --- acpica-unix-20131115/source/components/executer/exmutex.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exmutex.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exnames.c acpica-unix-20140114/source/components/executer/exnames.c --- acpica-unix-20131115/source/components/executer/exnames.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exnames.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exoparg1.c acpica-unix-20140114/source/components/executer/exoparg1.c --- acpica-unix-20131115/source/components/executer/exoparg1.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exoparg1.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exoparg2.c acpica-unix-20140114/source/components/executer/exoparg2.c --- acpica-unix-20131115/source/components/executer/exoparg2.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exoparg2.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exoparg3.c acpica-unix-20140114/source/components/executer/exoparg3.c --- acpica-unix-20131115/source/components/executer/exoparg3.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exoparg3.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exoparg6.c acpica-unix-20140114/source/components/executer/exoparg6.c --- acpica-unix-20131115/source/components/executer/exoparg6.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exoparg6.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exprep.c acpica-unix-20140114/source/components/executer/exprep.c --- acpica-unix-20131115/source/components/executer/exprep.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exprep.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exregion.c acpica-unix-20140114/source/components/executer/exregion.c --- acpica-unix-20131115/source/components/executer/exregion.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exregion.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exresnte.c acpica-unix-20140114/source/components/executer/exresnte.c --- acpica-unix-20131115/source/components/executer/exresnte.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exresnte.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -134,8 +134,8 @@ if (!SourceDesc) { - ACPI_ERROR ((AE_INFO, "No object attached to node %p", - Node)); + ACPI_ERROR ((AE_INFO, "No object attached to node [%4.4s] %p", + Node->Name.Ascii, Node)); return_ACPI_STATUS (AE_AML_NO_OPERAND); } diff -Nru acpica-unix-20131115/source/components/executer/exresolv.c acpica-unix-20140114/source/components/executer/exresolv.c --- acpica-unix-20131115/source/components/executer/exresolv.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exresolv.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exresop.c acpica-unix-20140114/source/components/executer/exresop.c --- acpica-unix-20131115/source/components/executer/exresop.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exresop.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exstore.c acpica-unix-20140114/source/components/executer/exstore.c --- acpica-unix-20131115/source/components/executer/exstore.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exstore.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exstoren.c acpica-unix-20140114/source/components/executer/exstoren.c --- acpica-unix-20131115/source/components/executer/exstoren.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exstoren.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exstorob.c acpica-unix-20140114/source/components/executer/exstorob.c --- acpica-unix-20131115/source/components/executer/exstorob.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exstorob.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exsystem.c acpica-unix-20140114/source/components/executer/exsystem.c --- acpica-unix-20131115/source/components/executer/exsystem.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exsystem.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/executer/exutils.c acpica-unix-20140114/source/components/executer/exutils.c --- acpica-unix-20131115/source/components/executer/exutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/executer/exutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwacpi.c acpica-unix-20140114/source/components/hardware/hwacpi.c --- acpica-unix-20131115/source/components/hardware/hwacpi.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwacpi.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwesleep.c acpica-unix-20140114/source/components/hardware/hwesleep.c --- acpica-unix-20131115/source/components/hardware/hwesleep.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwesleep.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwgpe.c acpica-unix-20140114/source/components/hardware/hwgpe.c --- acpica-unix-20131115/source/components/hardware/hwgpe.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwgpe.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwpci.c acpica-unix-20140114/source/components/hardware/hwpci.c --- acpica-unix-20131115/source/components/hardware/hwpci.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwpci.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwregs.c acpica-unix-20140114/source/components/hardware/hwregs.c --- acpica-unix-20131115/source/components/hardware/hwregs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwregs.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwsleep.c acpica-unix-20140114/source/components/hardware/hwsleep.c --- acpica-unix-20131115/source/components/hardware/hwsleep.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwsleep.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwtimer.c acpica-unix-20140114/source/components/hardware/hwtimer.c --- acpica-unix-20131115/source/components/hardware/hwtimer.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwtimer.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwvalid.c acpica-unix-20140114/source/components/hardware/hwvalid.c --- acpica-unix-20131115/source/components/hardware/hwvalid.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwvalid.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwxface.c acpica-unix-20140114/source/components/hardware/hwxface.c --- acpica-unix-20131115/source/components/hardware/hwxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/hardware/hwxfsleep.c acpica-unix-20140114/source/components/hardware/hwxfsleep.c --- acpica-unix-20131115/source/components/hardware/hwxfsleep.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/hardware/hwxfsleep.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsaccess.c acpica-unix-20140114/source/components/namespace/nsaccess.c --- acpica-unix-20131115/source/components/namespace/nsaccess.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsaccess.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsalloc.c acpica-unix-20140114/source/components/namespace/nsalloc.c --- acpica-unix-20131115/source/components/namespace/nsalloc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsalloc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsarguments.c acpica-unix-20140114/source/components/namespace/nsarguments.c --- acpica-unix-20131115/source/components/namespace/nsarguments.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsarguments.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsconvert.c acpica-unix-20140114/source/components/namespace/nsconvert.c --- acpica-unix-20131115/source/components/namespace/nsconvert.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsconvert.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsdump.c acpica-unix-20140114/source/components/namespace/nsdump.c --- acpica-unix-20131115/source/components/namespace/nsdump.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsdump.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsdumpdv.c acpica-unix-20140114/source/components/namespace/nsdumpdv.c --- acpica-unix-20131115/source/components/namespace/nsdumpdv.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsdumpdv.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nseval.c acpica-unix-20140114/source/components/namespace/nseval.c --- acpica-unix-20131115/source/components/namespace/nseval.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nseval.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsinit.c acpica-unix-20140114/source/components/namespace/nsinit.c --- acpica-unix-20131115/source/components/namespace/nsinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsload.c acpica-unix-20140114/source/components/namespace/nsload.c --- acpica-unix-20131115/source/components/namespace/nsload.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsload.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsnames.c acpica-unix-20140114/source/components/namespace/nsnames.c --- acpica-unix-20131115/source/components/namespace/nsnames.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsnames.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsobject.c acpica-unix-20140114/source/components/namespace/nsobject.c --- acpica-unix-20131115/source/components/namespace/nsobject.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsobject.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsparse.c acpica-unix-20140114/source/components/namespace/nsparse.c --- acpica-unix-20131115/source/components/namespace/nsparse.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsparse.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nspredef.c acpica-unix-20140114/source/components/namespace/nspredef.c --- acpica-unix-20131115/source/components/namespace/nspredef.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nspredef.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsprepkg.c acpica-unix-20140114/source/components/namespace/nsprepkg.c --- acpica-unix-20131115/source/components/namespace/nsprepkg.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsprepkg.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsrepair.c acpica-unix-20140114/source/components/namespace/nsrepair.c --- acpica-unix-20131115/source/components/namespace/nsrepair.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsrepair.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsrepair2.c acpica-unix-20140114/source/components/namespace/nsrepair2.c --- acpica-unix-20131115/source/components/namespace/nsrepair2.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsrepair2.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nssearch.c acpica-unix-20140114/source/components/namespace/nssearch.c --- acpica-unix-20131115/source/components/namespace/nssearch.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nssearch.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsutils.c acpica-unix-20140114/source/components/namespace/nsutils.c --- acpica-unix-20131115/source/components/namespace/nsutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nswalk.c acpica-unix-20140114/source/components/namespace/nswalk.c --- acpica-unix-20131115/source/components/namespace/nswalk.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nswalk.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsxfeval.c acpica-unix-20140114/source/components/namespace/nsxfeval.c --- acpica-unix-20131115/source/components/namespace/nsxfeval.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsxfeval.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -92,7 +92,7 @@ ACPI_OBJECT_TYPE ReturnType) { ACPI_STATUS Status; - BOOLEAN MustFree = FALSE; + BOOLEAN FreeBufferOnError = FALSE; ACPI_FUNCTION_TRACE (AcpiEvaluateObjectTyped); @@ -107,12 +107,13 @@ if (ReturnBuffer->Length == ACPI_ALLOCATE_BUFFER) { - MustFree = TRUE; + FreeBufferOnError = TRUE; } /* Evaluate the object */ - Status = AcpiEvaluateObject (Handle, Pathname, ExternalParams, ReturnBuffer); + Status = AcpiEvaluateObject (Handle, Pathname, + ExternalParams, ReturnBuffer); if (ACPI_FAILURE (Status)) { return_ACPI_STATUS (Status); @@ -147,13 +148,14 @@ AcpiUtGetTypeName (((ACPI_OBJECT *) ReturnBuffer->Pointer)->Type), AcpiUtGetTypeName (ReturnType))); - if (MustFree) + if (FreeBufferOnError) { /* - * Caller used ACPI_ALLOCATE_BUFFER, free the return buffer. + * Free a buffer created via ACPI_ALLOCATE_BUFFER. * Note: We use AcpiOsFree here because AcpiOsAllocate was used - * to allocate the buffer. This purposefully bypasses the internal - * allocation tracking mechanism (if it is enabled). + * to allocate the buffer. This purposefully bypasses the + * (optionally enabled) allocation tracking mechanism since we + * only want to track internal allocations. */ AcpiOsFree (ReturnBuffer->Pointer); ReturnBuffer->Pointer = NULL; diff -Nru acpica-unix-20131115/source/components/namespace/nsxfname.c acpica-unix-20140114/source/components/namespace/nsxfname.c --- acpica-unix-20131115/source/components/namespace/nsxfname.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsxfname.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/namespace/nsxfobj.c acpica-unix-20140114/source/components/namespace/nsxfobj.c --- acpica-unix-20131115/source/components/namespace/nsxfobj.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/namespace/nsxfobj.c 2014-01-28 13:06:26.000000000 +0000 @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psargs.c acpica-unix-20140114/source/components/parser/psargs.c --- acpica-unix-20131115/source/components/parser/psargs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psargs.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psloop.c acpica-unix-20140114/source/components/parser/psloop.c --- acpica-unix-20131115/source/components/parser/psloop.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psloop.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psobject.c acpica-unix-20140114/source/components/parser/psobject.c --- acpica-unix-20131115/source/components/parser/psobject.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psobject.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psopcode.c acpica-unix-20140114/source/components/parser/psopcode.c --- acpica-unix-20131115/source/components/parser/psopcode.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psopcode.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psopinfo.c acpica-unix-20140114/source/components/parser/psopinfo.c --- acpica-unix-20131115/source/components/parser/psopinfo.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psopinfo.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -76,6 +76,10 @@ AcpiPsGetOpcodeInfo ( UINT16 Opcode) { +#ifdef ACPI_DEBUG_OUTPUT + const char *OpcodeName = "Unknown AML opcode"; +#endif + ACPI_FUNCTION_NAME (PsGetOpcodeInfo); @@ -97,10 +101,56 @@ return (&AcpiGbl_AmlOpInfo [AcpiGbl_LongOpIndex [(UINT8) Opcode]]); } +#if defined ACPI_ASL_COMPILER && defined ACPI_DEBUG_OUTPUT +#include "asldefine.h" + + switch (Opcode) + { + case AML_RAW_DATA_BYTE: + OpcodeName = "-Raw Data Byte-"; + break; + + case AML_RAW_DATA_WORD: + OpcodeName = "-Raw Data Word-"; + break; + + case AML_RAW_DATA_DWORD: + OpcodeName = "-Raw Data Dword-"; + break; + + case AML_RAW_DATA_QWORD: + OpcodeName = "-Raw Data Qword-"; + break; + + case AML_RAW_DATA_BUFFER: + OpcodeName = "-Raw Data Buffer-"; + break; + + case AML_RAW_DATA_CHAIN: + OpcodeName = "-Raw Data Buffer Chain-"; + break; + + case AML_PACKAGE_LENGTH: + OpcodeName = "-Package Length-"; + break; + + case AML_UNASSIGNED_OPCODE: + OpcodeName = "-Unassigned Opcode-"; + break; + + case AML_DEFAULT_ARG_OP: + OpcodeName = "-Default Arg-"; + break; + + default: + break; + } +#endif + /* Unknown AML opcode */ ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, - "Unknown AML opcode [%4.4X]\n", Opcode)); + "%s [%4.4X]\n", OpcodeName, Opcode)); return (&AcpiGbl_AmlOpInfo [_UNK]); } diff -Nru acpica-unix-20131115/source/components/parser/psparse.c acpica-unix-20140114/source/components/parser/psparse.c --- acpica-unix-20131115/source/components/parser/psparse.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psparse.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psscope.c acpica-unix-20140114/source/components/parser/psscope.c --- acpica-unix-20131115/source/components/parser/psscope.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psscope.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/pstree.c acpica-unix-20140114/source/components/parser/pstree.c --- acpica-unix-20131115/source/components/parser/pstree.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/pstree.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psutils.c acpica-unix-20140114/source/components/parser/psutils.c --- acpica-unix-20131115/source/components/parser/psutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/pswalk.c acpica-unix-20140114/source/components/parser/pswalk.c --- acpica-unix-20131115/source/components/parser/pswalk.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/pswalk.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/parser/psxface.c acpica-unix-20140114/source/components/parser/psxface.c --- acpica-unix-20131115/source/components/parser/psxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/parser/psxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsaddr.c acpica-unix-20140114/source/components/resources/rsaddr.c --- acpica-unix-20131115/source/components/resources/rsaddr.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsaddr.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rscalc.c acpica-unix-20140114/source/components/resources/rscalc.c --- acpica-unix-20131115/source/components/resources/rscalc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rscalc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rscreate.c acpica-unix-20140114/source/components/resources/rscreate.c --- acpica-unix-20131115/source/components/resources/rscreate.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rscreate.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsdump.c acpica-unix-20140114/source/components/resources/rsdump.c --- acpica-unix-20131115/source/components/resources/rsdump.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsdump.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsdumpinfo.c acpica-unix-20140114/source/components/resources/rsdumpinfo.c --- acpica-unix-20131115/source/components/resources/rsdumpinfo.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsdumpinfo.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsinfo.c acpica-unix-20140114/source/components/resources/rsinfo.c --- acpica-unix-20131115/source/components/resources/rsinfo.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsinfo.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsio.c acpica-unix-20140114/source/components/resources/rsio.c --- acpica-unix-20131115/source/components/resources/rsio.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsio.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsirq.c acpica-unix-20140114/source/components/resources/rsirq.c --- acpica-unix-20131115/source/components/resources/rsirq.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsirq.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rslist.c acpica-unix-20140114/source/components/resources/rslist.c --- acpica-unix-20131115/source/components/resources/rslist.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rslist.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsmemory.c acpica-unix-20140114/source/components/resources/rsmemory.c --- acpica-unix-20131115/source/components/resources/rsmemory.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsmemory.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsmisc.c acpica-unix-20140114/source/components/resources/rsmisc.c --- acpica-unix-20131115/source/components/resources/rsmisc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsmisc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsserial.c acpica-unix-20140114/source/components/resources/rsserial.c --- acpica-unix-20131115/source/components/resources/rsserial.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsserial.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsutils.c acpica-unix-20140114/source/components/resources/rsutils.c --- acpica-unix-20131115/source/components/resources/rsutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/resources/rsxface.c acpica-unix-20140114/source/components/resources/rsxface.c --- acpica-unix-20131115/source/components/resources/rsxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/resources/rsxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/tables/tbfadt.c acpica-unix-20140114/source/components/tables/tbfadt.c --- acpica-unix-20131115/source/components/tables/tbfadt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbfadt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -65,13 +65,15 @@ void); static void -AcpiTbValidateFadt ( - void); - -static void AcpiTbSetupFadtRegisters ( void); +static UINT64 +AcpiTbSelectAddress ( + char *RegisterName, + UINT32 Address32, + UINT64 Address64); + /* Table for conversion of FADT to common internal format and FADT validation */ @@ -194,6 +196,7 @@ * SpaceId - ACPI Space ID for this register * ByteWidth - Width of this register * Address - Address of the register + * RegisterName - ASCII name of the ACPI register * * RETURN: None * @@ -245,6 +248,72 @@ /******************************************************************************* * + * FUNCTION: AcpiTbSelectAddress + * + * PARAMETERS: RegisterName - ASCII name of the ACPI register + * Address32 - 32-bit address of the register + * Address64 - 64-bit address of the register + * + * RETURN: The resolved 64-bit address + * + * DESCRIPTION: Select between 32-bit and 64-bit versions of addresses within + * the FADT. Used for the FACS and DSDT addresses. + * + * NOTES: + * + * Check for FACS and DSDT address mismatches. An address mismatch between + * the 32-bit and 64-bit address fields (FIRMWARE_CTRL/X_FIRMWARE_CTRL and + * DSDT/X_DSDT) could be a corrupted address field or it might indicate + * the presence of two FACS or two DSDT tables. + * + * November 2013: + * By default, as per the ACPICA specification, a valid 64-bit address is + * used regardless of the value of the 32-bit address. However, this + * behavior can be overridden via the AcpiGbl_Use32BitFadtAddresses flag. + * + ******************************************************************************/ + +static UINT64 +AcpiTbSelectAddress ( + char *RegisterName, + UINT32 Address32, + UINT64 Address64) +{ + + if (!Address64) + { + /* 64-bit address is zero, use 32-bit address */ + + return ((UINT64) Address32); + } + + if (Address32 && + (Address64 != (UINT64) Address32)) + { + /* Address mismatch between 32-bit and 64-bit versions */ + + ACPI_BIOS_WARNING ((AE_INFO, + "32/64X %s address mismatch in FADT: " + "0x%8.8X/0x%8.8X%8.8X, using %u-bit address", + RegisterName, Address32, ACPI_FORMAT_UINT64 (Address64), + AcpiGbl_Use32BitFadtAddresses ? 32 : 64)); + + /* 32-bit address override */ + + if (AcpiGbl_Use32BitFadtAddresses) + { + return ((UINT64) Address32); + } + } + + /* Default is to use the 64-bit address */ + + return (Address64); +} + + +/******************************************************************************* + * * FUNCTION: AcpiTbParseFadt * * PARAMETERS: TableIndex - Index for the FADT @@ -365,10 +434,6 @@ AcpiTbConvertFadt (); - /* Validate FADT values now, before we make any changes */ - - AcpiTbValidateFadt (); - /* Initialize the global ACPI register structures */ AcpiTbSetupFadtRegisters (); @@ -379,33 +444,43 @@ * * FUNCTION: AcpiTbConvertFadt * - * PARAMETERS: None, uses AcpiGbl_FADT + * PARAMETERS: None - AcpiGbl_FADT is used. * * RETURN: None * * DESCRIPTION: Converts all versions of the FADT to a common internal format. - * Expand 32-bit addresses to 64-bit as necessary. + * Expand 32-bit addresses to 64-bit as necessary. Also validate + * important fields within the FADT. * - * NOTE: AcpiGbl_FADT must be of size (ACPI_TABLE_FADT), - * and must contain a copy of the actual FADT. + * NOTE: AcpiGbl_FADT must be of size (ACPI_TABLE_FADT), and must + * contain a copy of the actual BIOS-provided FADT. * * Notes on 64-bit register addresses: * * After this FADT conversion, later ACPICA code will only use the 64-bit "X" * fields of the FADT for all ACPI register addresses. * - * The 64-bit "X" fields are optional extensions to the original 32-bit FADT + * The 64-bit X fields are optional extensions to the original 32-bit FADT * V1.0 fields. Even if they are present in the FADT, they are optional and * are unused if the BIOS sets them to zero. Therefore, we must copy/expand - * 32-bit V1.0 fields if the corresponding X field is zero. + * 32-bit V1.0 fields to the 64-bit X fields if the the 64-bit X field is + * originally zero. * - * For ACPI 1.0 FADTs, all 32-bit address fields are expanded to the - * corresponding "X" fields in the internal FADT. + * For ACPI 1.0 FADTs (that contain no 64-bit addresses), all 32-bit address + * fields are expanded to the corresponding 64-bit X fields in the internal + * common FADT. * * For ACPI 2.0+ FADTs, all valid (non-zero) 32-bit address fields are expanded - * to the corresponding 64-bit X fields. For compatibility with other ACPI - * implementations, we ignore the 64-bit field if the 32-bit field is valid, - * regardless of whether the host OS is 32-bit or 64-bit. + * to the corresponding 64-bit X fields, if the 64-bit field is originally + * zero. Adhering to the ACPI specification, we completely ignore the 32-bit + * field if the 64-bit field is valid, regardless of whether the host OS is + * 32-bit or 64-bit. + * + * Possible additional checks: + * (AcpiGbl_FADT.Pm1EventLength >= 4) + * (AcpiGbl_FADT.Pm1ControlLength >= 2) + * (AcpiGbl_FADT.PmTimerLength >= 4) + * Gpe block lengths must be multiple of 2 * ******************************************************************************/ @@ -413,25 +488,14 @@ AcpiTbConvertFadt ( void) { + char *Name; ACPI_GENERIC_ADDRESS *Address64; UINT32 Address32; + UINT8 Length; UINT32 i; /* - * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary. - * Later code will always use the X 64-bit field. - */ - if (!AcpiGbl_FADT.XFacs) - { - AcpiGbl_FADT.XFacs = (UINT64) AcpiGbl_FADT.Facs; - } - if (!AcpiGbl_FADT.XDsdt) - { - AcpiGbl_FADT.XDsdt = (UINT64) AcpiGbl_FADT.Dsdt; - } - - /* * For ACPI 1.0 FADTs (revision 1 or 2), ensure that reserved fields which * should be zero are indeed zero. This will workaround BIOSs that * inadvertently place values in these fields. @@ -458,113 +522,14 @@ AcpiGbl_FADT.Header.Length = sizeof (ACPI_TABLE_FADT); /* - * Expand the ACPI 1.0 32-bit addresses to the ACPI 2.0 64-bit "X" - * generic address structures as necessary. Later code will always use - * the 64-bit address structures. - * - * March 2009: - * We now always use the 32-bit address if it is valid (non-null). This - * is not in accordance with the ACPI specification which states that - * the 64-bit address supersedes the 32-bit version, but we do this for - * compatibility with other ACPI implementations. Most notably, in the - * case where both the 32 and 64 versions are non-null, we use the 32-bit - * version. This is the only address that is guaranteed to have been - * tested by the BIOS manufacturer. - */ - for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) - { - Address32 = *ACPI_ADD_PTR (UINT32, - &AcpiGbl_FADT, FadtInfoTable[i].Address32); - - Address64 = ACPI_ADD_PTR (ACPI_GENERIC_ADDRESS, - &AcpiGbl_FADT, FadtInfoTable[i].Address64); - - /* - * If both 32- and 64-bit addresses are valid (non-zero), - * they must match. - */ - if (Address64->Address && Address32 && - (Address64->Address != (UINT64) Address32)) - { - ACPI_BIOS_ERROR ((AE_INFO, - "32/64X address mismatch in FADT/%s: " - "0x%8.8X/0x%8.8X%8.8X, using 32", - FadtInfoTable[i].Name, Address32, - ACPI_FORMAT_UINT64 (Address64->Address))); - } - - /* Always use 32-bit address if it is valid (non-null) */ - - if (Address32) - { - /* - * Copy the 32-bit address to the 64-bit GAS structure. The - * Space ID is always I/O for 32-bit legacy address fields - */ - AcpiTbInitGenericAddress (Address64, ACPI_ADR_SPACE_SYSTEM_IO, - *ACPI_ADD_PTR (UINT8, &AcpiGbl_FADT, FadtInfoTable[i].Length), - (UINT64) Address32, FadtInfoTable[i].Name); - } - } -} - - -/******************************************************************************* - * - * FUNCTION: AcpiTbValidateFadt - * - * PARAMETERS: Table - Pointer to the FADT to be validated - * - * RETURN: None - * - * DESCRIPTION: Validate various important fields within the FADT. If a problem - * is found, issue a message, but no status is returned. - * Used by both the table manager and the disassembler. - * - * Possible additional checks: - * (AcpiGbl_FADT.Pm1EventLength >= 4) - * (AcpiGbl_FADT.Pm1ControlLength >= 2) - * (AcpiGbl_FADT.PmTimerLength >= 4) - * Gpe block lengths must be multiple of 2 - * - ******************************************************************************/ - -static void -AcpiTbValidateFadt ( - void) -{ - char *Name; - ACPI_GENERIC_ADDRESS *Address64; - UINT8 Length; - UINT32 i; - - - /* - * Check for FACS and DSDT address mismatches. An address mismatch between - * the 32-bit and 64-bit address fields (FIRMWARE_CTRL/X_FIRMWARE_CTRL and - * DSDT/X_DSDT) would indicate the presence of two FACS or two DSDT tables. + * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary. + * Later ACPICA code will always use the X 64-bit field. */ - if (AcpiGbl_FADT.Facs && - (AcpiGbl_FADT.XFacs != (UINT64) AcpiGbl_FADT.Facs)) - { - ACPI_BIOS_WARNING ((AE_INFO, - "32/64X FACS address mismatch in FADT - " - "0x%8.8X/0x%8.8X%8.8X, using 32", - AcpiGbl_FADT.Facs, ACPI_FORMAT_UINT64 (AcpiGbl_FADT.XFacs))); + AcpiGbl_FADT.XFacs = AcpiTbSelectAddress ("FACS", + AcpiGbl_FADT.Facs, AcpiGbl_FADT.XFacs); - AcpiGbl_FADT.XFacs = (UINT64) AcpiGbl_FADT.Facs; - } - - if (AcpiGbl_FADT.Dsdt && - (AcpiGbl_FADT.XDsdt != (UINT64) AcpiGbl_FADT.Dsdt)) - { - ACPI_BIOS_WARNING ((AE_INFO, - "32/64X DSDT address mismatch in FADT - " - "0x%8.8X/0x%8.8X%8.8X, using 32", - AcpiGbl_FADT.Dsdt, ACPI_FORMAT_UINT64 (AcpiGbl_FADT.XDsdt))); - - AcpiGbl_FADT.XDsdt = (UINT64) AcpiGbl_FADT.Dsdt; - } + AcpiGbl_FADT.XDsdt = AcpiTbSelectAddress ("DSDT", + AcpiGbl_FADT.Dsdt, AcpiGbl_FADT.XDsdt); /* If Hardware Reduced flag is set, we are all done */ @@ -578,16 +543,82 @@ for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) { /* - * Generate pointer to the 64-bit address, get the register - * length (width) and the register name + * Get the 32-bit and 64-bit addresses, as well as the register + * length and register name. */ + Address32 = *ACPI_ADD_PTR (UINT32, + &AcpiGbl_FADT, FadtInfoTable[i].Address32); + Address64 = ACPI_ADD_PTR (ACPI_GENERIC_ADDRESS, - &AcpiGbl_FADT, FadtInfoTable[i].Address64); + &AcpiGbl_FADT, FadtInfoTable[i].Address64); + Length = *ACPI_ADD_PTR (UINT8, - &AcpiGbl_FADT, FadtInfoTable[i].Length); + &AcpiGbl_FADT, FadtInfoTable[i].Length); + Name = FadtInfoTable[i].Name; /* + * Expand the ACPI 1.0 32-bit addresses to the ACPI 2.0 64-bit "X" + * generic address structures as necessary. Later code will always use + * the 64-bit address structures. + * + * November 2013: + * Now always use the 64-bit address if it is valid (non-zero), in + * accordance with the ACPI specification which states that a 64-bit + * address supersedes the 32-bit version. This behavior can be + * overridden by the AcpiGbl_Use32BitFadtAddresses flag. + * + * During 64-bit address construction and verification, + * these cases are handled: + * + * Address32 zero, Address64 [don't care] - Use Address64 + * + * Address32 non-zero, Address64 zero - Copy/use Address32 + * Address32 non-zero == Address64 non-zero - Use Address64 + * Address32 non-zero != Address64 non-zero - Warning, use Address64 + * + * Override: if AcpiGbl_Use32BitFadtAddresses is TRUE, and: + * Address32 non-zero != Address64 non-zero - Warning, copy/use Address32 + * + * Note: SpaceId is always I/O for 32-bit legacy address fields + */ + if (Address32) + { + if (!Address64->Address) + { + /* 64-bit address is zero, use 32-bit address */ + + AcpiTbInitGenericAddress (Address64, + ACPI_ADR_SPACE_SYSTEM_IO, + *ACPI_ADD_PTR (UINT8, &AcpiGbl_FADT, + FadtInfoTable[i].Length), + (UINT64) Address32, Name); + } + else if (Address64->Address != (UINT64) Address32) + { + /* Address mismatch */ + + ACPI_BIOS_WARNING ((AE_INFO, + "32/64X address mismatch in FADT/%s: " + "0x%8.8X/0x%8.8X%8.8X, using %u-bit address", + Name, Address32, + ACPI_FORMAT_UINT64 (Address64->Address), + AcpiGbl_Use32BitFadtAddresses ? 32 : 64)); + + if (AcpiGbl_Use32BitFadtAddresses) + { + /* 32-bit address override */ + + AcpiTbInitGenericAddress (Address64, + ACPI_ADR_SPACE_SYSTEM_IO, + *ACPI_ADD_PTR (UINT8, &AcpiGbl_FADT, + FadtInfoTable[i].Length), + (UINT64) Address32, Name); + } + } + } + + /* * For each extended field, check for length mismatch between the * legacy length field and the corresponding 64-bit X length field. * Note: If the legacy length field is > 0xFF bits, ignore this diff -Nru acpica-unix-20131115/source/components/tables/tbfind.c acpica-unix-20140114/source/components/tables/tbfind.c --- acpica-unix-20131115/source/components/tables/tbfind.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbfind.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/tables/tbinstal.c acpica-unix-20140114/source/components/tables/tbinstal.c --- acpica-unix-20131115/source/components/tables/tbinstal.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbinstal.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -315,9 +315,10 @@ if (!NewTable) { ACPI_EXCEPTION ((AE_INFO, AE_NO_MEMORY, - "%4.4s %p Attempted physical table override failed", + "%4.4s " ACPI_PRINTF_UINT + " Attempted physical table override failed", TableHeader->Signature, - ACPI_CAST_PTR (void, TableDesc->Address))); + ACPI_FORMAT_TO_UINT (TableDesc->Address))); return (NULL); } @@ -331,11 +332,11 @@ FinishOverride: - ACPI_INFO ((AE_INFO, - "%4.4s %p %s table override, new table: %p", + ACPI_INFO ((AE_INFO, "%4.4s " ACPI_PRINTF_UINT + " %s table override, new table: " ACPI_PRINTF_UINT, TableHeader->Signature, - ACPI_CAST_PTR (void, TableDesc->Address), - OverrideType, NewTable)); + ACPI_FORMAT_TO_UINT (TableDesc->Address), + OverrideType, ACPI_FORMAT_TO_UINT (NewTable))); /* We can now unmap/delete the original table (if fully mapped) */ diff -Nru acpica-unix-20131115/source/components/tables/tbprint.c acpica-unix-20140114/source/components/tables/tbprint.c --- acpica-unix-20131115/source/components/tables/tbprint.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbprint.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -147,15 +147,17 @@ /* - * The reason that the Address is cast to a void pointer is so that we - * can use %p which will work properly on both 32-bit and 64-bit hosts. + * The reason that we use ACPI_PRINTF_UINT and ACPI_FORMAT_TO_UINT is to + * support both 32-bit and 64-bit hosts/addresses in a consistent manner. + * The %p specifier does not emit uniform output on all hosts. On some, + * leading zeros are not supported. */ if (ACPI_COMPARE_NAME (Header->Signature, ACPI_SIG_FACS)) { /* FACS only has signature and length fields */ - ACPI_INFO ((AE_INFO, "%4.4s %p %06X", - Header->Signature, ACPI_CAST_PTR (void, Address), + ACPI_INFO ((AE_INFO, "%-4.4s " ACPI_PRINTF_UINT " %06X", + Header->Signature, ACPI_FORMAT_TO_UINT (Address), Header->Length)); } else if (ACPI_VALIDATE_RSDP_SIG (Header->Signature)) @@ -166,8 +168,8 @@ ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->OemId, ACPI_OEM_ID_SIZE); AcpiTbFixString (LocalHeader.OemId, ACPI_OEM_ID_SIZE); - ACPI_INFO ((AE_INFO, "RSDP %p %06X (v%.2d %6.6s)", - ACPI_CAST_PTR (void, Address), + ACPI_INFO ((AE_INFO, "RSDP " ACPI_PRINTF_UINT " %06X (v%.2d %-6.6s)", + ACPI_FORMAT_TO_UINT (Address), (ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->Revision > 0) ? ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->Length : 20, ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->Revision, @@ -180,8 +182,9 @@ AcpiTbCleanupTableHeader (&LocalHeader, Header); ACPI_INFO ((AE_INFO, - "%4.4s %p %06X (v%.2d %6.6s %8.8s %08X %4.4s %08X)", - LocalHeader.Signature, ACPI_CAST_PTR (void, Address), + "%-4.4s " ACPI_PRINTF_UINT + " %06X (v%.2d %-6.6s %-8.8s %08X %-4.4s %08X)", + LocalHeader.Signature, ACPI_FORMAT_TO_UINT (Address), LocalHeader.Length, LocalHeader.Revision, LocalHeader.OemId, LocalHeader.OemTableId, LocalHeader.OemRevision, LocalHeader.AslCompilerId, LocalHeader.AslCompilerRevision)); diff -Nru acpica-unix-20131115/source/components/tables/tbutils.c acpica-unix-20140114/source/components/tables/tbutils.c --- acpica-unix-20131115/source/components/tables/tbutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -53,6 +53,10 @@ /* Local prototypes */ +static ACPI_STATUS +AcpiTbValidateXsdt ( + ACPI_PHYSICAL_ADDRESS Address); + static ACPI_PHYSICAL_ADDRESS AcpiTbGetRootTableEntry ( UINT8 *TableEntry, @@ -353,7 +357,7 @@ * Get the table physical address (32-bit for RSDT, 64-bit for XSDT): * Note: Addresses are 32-bit aligned (not 64) in both RSDT and XSDT */ - if (TableEntrySize == sizeof (UINT32)) + if (TableEntrySize == ACPI_RSDT_ENTRY_SIZE) { /* * 32-bit platform, RSDT: Return 32-bit table entry @@ -388,6 +392,92 @@ /******************************************************************************* * + * FUNCTION: AcpiTbValidateXsdt + * + * PARAMETERS: Address - Physical address of the XSDT (from RSDP) + * + * RETURN: Status. AE_OK if the table appears to be valid. + * + * DESCRIPTION: Validate an XSDT to ensure that it is of minimum size and does + * not contain any NULL entries. A problem that is seen in the + * field is that the XSDT exists, but is actually useless because + * of one or more (or all) NULL entries. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiTbValidateXsdt ( + ACPI_PHYSICAL_ADDRESS XsdtAddress) +{ + ACPI_TABLE_HEADER *Table; + UINT8 *NextEntry; + ACPI_PHYSICAL_ADDRESS Address; + UINT32 Length; + UINT32 EntryCount; + ACPI_STATUS Status; + UINT32 i; + + + /* Get the XSDT length */ + + Table = AcpiOsMapMemory (XsdtAddress, sizeof (ACPI_TABLE_HEADER)); + if (!Table) + { + return (AE_NO_MEMORY); + } + + Length = Table->Length; + AcpiOsUnmapMemory (Table, sizeof (ACPI_TABLE_HEADER)); + + /* + * Minimum XSDT length is the size of the standard ACPI header + * plus one physical address entry + */ + if (Length < (sizeof (ACPI_TABLE_HEADER) + ACPI_XSDT_ENTRY_SIZE)) + { + return (AE_INVALID_TABLE_LENGTH); + } + + /* Map the entire XSDT */ + + Table = AcpiOsMapMemory (XsdtAddress, Length); + if (!Table) + { + return (AE_NO_MEMORY); + } + + /* Get the number of entries and pointer to first entry */ + + Status = AE_OK; + NextEntry = ACPI_ADD_PTR (UINT8, Table, sizeof (ACPI_TABLE_HEADER)); + EntryCount = (UINT32) ((Table->Length - sizeof (ACPI_TABLE_HEADER)) / + ACPI_XSDT_ENTRY_SIZE); + + /* Validate each entry (physical address) within the XSDT */ + + for (i = 0; i < EntryCount; i++) + { + Address = AcpiTbGetRootTableEntry (NextEntry, ACPI_XSDT_ENTRY_SIZE); + if (!Address) + { + /* Detected a NULL entry, XSDT is invalid */ + + Status = AE_NULL_ENTRY; + break; + } + + NextEntry += ACPI_XSDT_ENTRY_SIZE; + } + + /* Unmap table */ + + AcpiOsUnmapMemory (Table, Length); + return (Status); +} + + +/******************************************************************************* + * * FUNCTION: AcpiTbParseRootTable * * PARAMETERS: Rsdp - Pointer to the RSDP @@ -421,9 +511,8 @@ ACPI_FUNCTION_TRACE (TbParseRootTable); - /* - * Map the entire RSDP and extract the address of the RSDT or XSDT - */ + /* Map the entire RSDP and extract the address of the RSDT or XSDT */ + Rsdp = AcpiOsMapMemory (RsdpAddress, sizeof (ACPI_TABLE_RSDP)); if (!Rsdp) { @@ -433,24 +522,26 @@ AcpiTbPrintTableHeader (RsdpAddress, ACPI_CAST_PTR (ACPI_TABLE_HEADER, Rsdp)); - /* Differentiate between RSDT and XSDT root tables */ + /* Use XSDT if present and not overridden. Otherwise, use RSDT */ - if (Rsdp->Revision > 1 && Rsdp->XsdtPhysicalAddress) + if ((Rsdp->Revision > 1) && + Rsdp->XsdtPhysicalAddress && + !AcpiGbl_DoNotUseXsdt) { /* - * Root table is an XSDT (64-bit physical addresses). We must use the - * XSDT if the revision is > 1 and the XSDT pointer is present, as per - * the ACPI specification. + * RSDP contains an XSDT (64-bit physical addresses). We must use + * the XSDT if the revision is > 1 and the XSDT pointer is present, + * as per the ACPI specification. */ Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->XsdtPhysicalAddress; - TableEntrySize = sizeof (UINT64); + TableEntrySize = ACPI_XSDT_ENTRY_SIZE; } else { /* Root table is an RSDT (32-bit physical addresses) */ Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->RsdtPhysicalAddress; - TableEntrySize = sizeof (UINT32); + TableEntrySize = ACPI_RSDT_ENTRY_SIZE; } /* @@ -459,6 +550,24 @@ */ AcpiOsUnmapMemory (Rsdp, sizeof (ACPI_TABLE_RSDP)); + /* + * If it is present and used, validate the XSDT for access/size + * and ensure that all table entries are at least non-NULL + */ + if (TableEntrySize == ACPI_XSDT_ENTRY_SIZE) + { + Status = AcpiTbValidateXsdt (Address); + if (ACPI_FAILURE (Status)) + { + ACPI_BIOS_WARNING ((AE_INFO, "XSDT is invalid (%s), using RSDT", + AcpiFormatException (Status))); + + /* Fall back to the RSDT */ + + Address = (ACPI_PHYSICAL_ADDRESS) Rsdp->RsdtPhysicalAddress; + TableEntrySize = ACPI_RSDT_ENTRY_SIZE; + } + } /* Map the RSDT/XSDT table header to get the full table length */ @@ -470,12 +579,14 @@ AcpiTbPrintTableHeader (Address, Table); - /* Get the length of the full table, verify length and map entire table */ - + /* + * Validate length of the table, and map entire table. + * Minimum length table must contain at least one entry. + */ Length = Table->Length; AcpiOsUnmapMemory (Table, sizeof (ACPI_TABLE_HEADER)); - if (Length < sizeof (ACPI_TABLE_HEADER)) + if (Length < (sizeof (ACPI_TABLE_HEADER) + TableEntrySize)) { ACPI_BIOS_ERROR ((AE_INFO, "Invalid table length 0x%X in RSDT/XSDT", Length)); @@ -497,22 +608,21 @@ return_ACPI_STATUS (Status); } - /* Calculate the number of tables described in the root table */ + /* Get the number of entries and pointer to first entry */ TableCount = (UINT32) ((Table->Length - sizeof (ACPI_TABLE_HEADER)) / TableEntrySize); + TableEntry = ACPI_ADD_PTR (UINT8, Table, sizeof (ACPI_TABLE_HEADER)); /* * First two entries in the table array are reserved for the DSDT * and FACS, which are not actually present in the RSDT/XSDT - they * come from the FADT */ - TableEntry = ACPI_CAST_PTR (UINT8, Table) + sizeof (ACPI_TABLE_HEADER); AcpiGbl_RootTableList.CurrentTableCount = 2; - /* - * Initialize the root table array from the RSDT/XSDT - */ + /* Initialize the root table array from the RSDT/XSDT */ + for (i = 0; i < TableCount; i++) { if (AcpiGbl_RootTableList.CurrentTableCount >= @@ -554,7 +664,7 @@ AcpiTbInstallTable (AcpiGbl_RootTableList.Tables[i].Address, NULL, i); - /* Special case for FADT - get the DSDT and FACS */ + /* Special case for FADT - validate it then get the DSDT and FACS */ if (ACPI_COMPARE_NAME ( &AcpiGbl_RootTableList.Tables[i].Signature, ACPI_SIG_FADT)) diff -Nru acpica-unix-20131115/source/components/tables/tbxface.c acpica-unix-20140114/source/components/tables/tbxface.c --- acpica-unix-20131115/source/components/tables/tbxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/tables/tbxfload.c acpica-unix-20140114/source/components/tables/tbxfload.c --- acpica-unix-20131115/source/components/tables/tbxfload.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbxfload.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/tables/tbxfroot.c acpica-unix-20140114/source/components/tables/tbxfroot.c --- acpica-unix-20131115/source/components/tables/tbxfroot.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/tables/tbxfroot.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utaddress.c acpica-unix-20140114/source/components/utilities/utaddress.c --- acpica-unix-20131115/source/components/utilities/utaddress.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utaddress.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -248,10 +248,11 @@ while (RangeInfo) { /* - * Check if the requested Address/Length overlaps this AddressRange. - * Four cases to consider: + * Check if the requested address/length overlaps this + * address range. There are four cases to consider: * - * 1) Input address/length is contained completely in the address range + * 1) Input address/length is contained completely in the + * address range * 2) Input address/length overlaps range at the range start * 3) Input address/length overlaps range at the range end * 4) Input address/length completely encompasses the range @@ -267,10 +268,13 @@ Pathname = AcpiNsGetExternalPathname (RangeInfo->RegionNode); ACPI_WARNING ((AE_INFO, - "0x%p-0x%p %s conflicts with Region %s %d", + "%s range 0x%p-0x%p conflicts with OpRegion 0x%p-0x%p (%s)", + AcpiUtGetRegionName (SpaceId), ACPI_CAST_PTR (void, Address), ACPI_CAST_PTR (void, EndAddress), - AcpiUtGetRegionName (SpaceId), Pathname, OverlapCount)); + ACPI_CAST_PTR (void, RangeInfo->StartAddress), + ACPI_CAST_PTR (void, RangeInfo->EndAddress), + Pathname)); ACPI_FREE (Pathname); } } diff -Nru acpica-unix-20131115/source/components/utilities/utalloc.c acpica-unix-20140114/source/components/utilities/utalloc.c --- acpica-unix-20131115/source/components/utilities/utalloc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utalloc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -324,9 +324,13 @@ return (AE_BUFFER_OVERFLOW); case ACPI_ALLOCATE_BUFFER: - - /* Allocate a new buffer */ - + /* + * Allocate a new buffer. We directectly call AcpiOsAllocate here to + * purposefully bypass the (optionally enabled) internal allocation + * tracking mechanism since we only want to track internal + * allocations. Note: The caller should use AcpiOsFree to free this + * buffer created via ACPI_ALLOCATE_BUFFER. + */ Buffer->Pointer = AcpiOsAllocate (RequiredLength); break; diff -Nru acpica-unix-20131115/source/components/utilities/utbuffer.c acpica-unix-20140114/source/components/utilities/utbuffer.c --- acpica-unix-20131115/source/components/utilities/utbuffer.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utbuffer.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utcache.c acpica-unix-20140114/source/components/utilities/utcache.c --- acpica-unix-20131115/source/components/utilities/utcache.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utcache.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -286,13 +286,13 @@ if (!Cache) { - return (NULL); + return_PTR (NULL); } Status = AcpiUtAcquireMutex (ACPI_MTX_CACHES); if (ACPI_FAILURE (Status)) { - return (NULL); + return_PTR (NULL); } ACPI_MEM_TRACKING (Cache->Requests++); @@ -315,7 +315,7 @@ Status = AcpiUtReleaseMutex (ACPI_MTX_CACHES); if (ACPI_FAILURE (Status)) { - return (NULL); + return_PTR (NULL); } /* Clear (zero) the previously used Object */ @@ -340,16 +340,16 @@ Status = AcpiUtReleaseMutex (ACPI_MTX_CACHES); if (ACPI_FAILURE (Status)) { - return (NULL); + return_PTR (NULL); } Object = ACPI_ALLOCATE_ZEROED (Cache->ObjectSize); if (!Object) { - return (NULL); + return_PTR (NULL); } } - return (Object); + return_PTR (Object); } #endif /* ACPI_USE_LOCAL_CACHE */ diff -Nru acpica-unix-20131115/source/components/utilities/utclib.c acpica-unix-20140114/source/components/utilities/utclib.c --- acpica-unix-20131115/source/components/utilities/utclib.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utclib.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utcopy.c acpica-unix-20140114/source/components/utilities/utcopy.c --- acpica-unix-20131115/source/components/utilities/utcopy.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utcopy.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -564,10 +564,10 @@ case ACPI_TYPE_LOCAL_REFERENCE: - /* TBD: should validate incoming handle */ + /* An incoming reference is defined to be a namespace node */ - InternalObject->Reference.Class = ACPI_REFCLASS_NAME; - InternalObject->Reference.Node = ExternalObject->Reference.Handle; + InternalObject->Reference.Class = ACPI_REFCLASS_REFOF; + InternalObject->Reference.Object = ExternalObject->Reference.Handle; break; default: diff -Nru acpica-unix-20131115/source/components/utilities/utdebug.c acpica-unix-20140114/source/components/utilities/utdebug.c --- acpica-unix-20131115/source/components/utilities/utdebug.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utdebug.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -220,9 +220,9 @@ */ AcpiOsPrintf ("%9s-%04ld ", ModuleName, LineNumber); -#ifdef ACPI_EXEC_APP +#ifdef ACPI_APPLICATION /* - * For AcpiExec only, emit the thread ID and nesting level. + * For AcpiExec/iASL only, emit the thread ID and nesting level. * Note: nesting level is really only useful during a single-thread * execution. Otherwise, multiple threads will keep resetting the * level. diff -Nru acpica-unix-20131115/source/components/utilities/utdecode.c acpica-unix-20140114/source/components/utilities/utdecode.c --- acpica-unix-20131115/source/components/utilities/utdecode.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utdecode.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utdelete.c acpica-unix-20140114/source/components/utilities/utdelete.c --- acpica-unix-20131115/source/components/utilities/utdelete.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utdelete.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/uterror.c acpica-unix-20140114/source/components/utilities/uterror.c --- acpica-unix-20131115/source/components/utilities/uterror.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/uterror.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/uteval.c acpica-unix-20140114/source/components/utilities/uteval.c --- acpica-unix-20131115/source/components/utilities/uteval.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/uteval.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utexcep.c acpica-unix-20140114/source/components/utilities/utexcep.c --- acpica-unix-20131115/source/components/utilities/utexcep.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utexcep.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utglobal.c acpica-unix-20140114/source/components/utilities/utglobal.c --- acpica-unix-20131115/source/components/utilities/utglobal.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utglobal.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utids.c acpica-unix-20140114/source/components/utilities/utids.c --- acpica-unix-20131115/source/components/utilities/utids.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utids.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utinit.c acpica-unix-20140114/source/components/utilities/utinit.c --- acpica-unix-20131115/source/components/utilities/utinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utlock.c acpica-unix-20140114/source/components/utilities/utlock.c --- acpica-unix-20131115/source/components/utilities/utlock.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utlock.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utmath.c acpica-unix-20140114/source/components/utilities/utmath.c --- acpica-unix-20131115/source/components/utilities/utmath.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utmath.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utmisc.c acpica-unix-20140114/source/components/utilities/utmisc.c --- acpica-unix-20131115/source/components/utilities/utmisc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utmisc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utmutex.c acpica-unix-20140114/source/components/utilities/utmutex.c --- acpica-unix-20131115/source/components/utilities/utmutex.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utmutex.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utobject.c acpica-unix-20140114/source/components/utilities/utobject.c --- acpica-unix-20131115/source/components/utilities/utobject.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utobject.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utosi.c acpica-unix-20140114/source/components/utilities/utosi.c --- acpica-unix-20131115/source/components/utilities/utosi.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utosi.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utownerid.c acpica-unix-20140114/source/components/utilities/utownerid.c --- acpica-unix-20131115/source/components/utilities/utownerid.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utownerid.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utpredef.c acpica-unix-20140114/source/components/utilities/utpredef.c --- acpica-unix-20131115/source/components/utilities/utpredef.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utpredef.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utresrc.c acpica-unix-20140114/source/components/utilities/utresrc.c --- acpica-unix-20131115/source/components/utilities/utresrc.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utresrc.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -53,7 +53,7 @@ ACPI_MODULE_NAME ("utresrc") -#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) +#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) /* * Strings used to decode resource descriptors. diff -Nru acpica-unix-20131115/source/components/utilities/utstate.c acpica-unix-20140114/source/components/utilities/utstate.c --- acpica-unix-20131115/source/components/utilities/utstate.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utstate.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utstring.c acpica-unix-20140114/source/components/utilities/utstring.c --- acpica-unix-20131115/source/components/utilities/utstring.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utstring.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/uttrack.c acpica-unix-20140114/source/components/utilities/uttrack.c --- acpica-unix-20131115/source/components/utilities/uttrack.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/uttrack.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -307,7 +307,8 @@ } AcpiOsFree (DebugBlock); - ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "%p freed\n", Allocation)); + ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "%p freed (block %p)\n", + Allocation, DebugBlock)); return_VOID; } diff -Nru acpica-unix-20131115/source/components/utilities/utxface.c acpica-unix-20140114/source/components/utilities/utxface.c --- acpica-unix-20131115/source/components/utilities/utxface.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utxface.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utxferror.c acpica-unix-20140114/source/components/utilities/utxferror.c --- acpica-unix-20131115/source/components/utilities/utxferror.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utxferror.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/components/utilities/utxfinit.c acpica-unix-20140114/source/components/utilities/utxfinit.c --- acpica-unix-20131115/source/components/utilities/utxfinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utxfinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -131,8 +131,16 @@ /* If configured, initialize the AML debugger */ - ACPI_DEBUGGER_EXEC (Status = AcpiDbInitialize ()); - return_ACPI_STATUS (Status); +#ifdef ACPI_DEBUGGER + Status = AcpiDbInitialize (); + if (ACPI_FAILURE (Status)) + { + ACPI_EXCEPTION ((AE_INFO, Status, "During Debugger initialization")); + return_ACPI_STATUS (Status); + } +#endif + + return_ACPI_STATUS (AE_OK); } ACPI_EXPORT_SYMBOL_INIT (AcpiInitializeSubsystem) diff -Nru acpica-unix-20131115/source/components/utilities/utxfmutex.c acpica-unix-20140114/source/components/utilities/utxfmutex.c --- acpica-unix-20131115/source/components/utilities/utxfmutex.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/components/utilities/utxfmutex.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acapps.h acpica-unix-20140114/source/include/acapps.h --- acpica-unix-20131115/source/include/acapps.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acapps.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -52,7 +52,7 @@ /* Common info for tool signons */ #define ACPICA_NAME "Intel ACPI Component Architecture" -#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2013 Intel Corporation" +#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2014 Intel Corporation" #if ACPI_MACHINE_WIDTH == 64 #define ACPI_WIDTH "-64" diff -Nru acpica-unix-20131115/source/include/acbuffer.h acpica-unix-20140114/source/include/acbuffer.h --- acpica-unix-20131115/source/include/acbuffer.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acbuffer.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/accommon.h acpica-unix-20140114/source/include/accommon.h --- acpica-unix-20131115/source/include/accommon.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/accommon.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acconfig.h acpica-unix-20140114/source/include/acconfig.h --- acpica-unix-20131115/source/include/acconfig.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acconfig.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acdebug.h acpica-unix-20140114/source/include/acdebug.h --- acpica-unix-20131115/source/include/acdebug.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acdebug.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -164,6 +164,11 @@ AcpiDbGenerateSci ( void)) +void +AcpiDbExecuteTest ( + char *TypeArg); + + /* * dbconvert - miscellaneous conversion routines */ diff -Nru acpica-unix-20131115/source/include/acdisasm.h acpica-unix-20140114/source/include/acdisasm.h --- acpica-unix-20131115/source/include/acdisasm.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acdisasm.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -69,14 +69,14 @@ } ACPI_DMTABLE_INFO; +/* Values for Flags field above */ + #define DT_LENGTH 0x01 /* Field is a subtable length */ #define DT_FLAG 0x02 /* Field is a flag value */ #define DT_NON_ZERO 0x04 /* Field must be non-zero */ - -/* TBD: Not used at this time */ - -#define DT_OPTIONAL 0x08 -#define DT_COUNT 0x10 +#define DT_OPTIONAL 0x08 /* Field is optional */ +#define DT_DESCRIBES_OPTIONAL 0x10 /* Field describes an optional field (length, etc.) */ +#define DT_COUNT 0x20 /* Currently not used */ /* * Values for Opcode above. @@ -147,6 +147,7 @@ ACPI_DMT_HESTNTYP, ACPI_DMT_IVRS, ACPI_DMT_MADT, + ACPI_DMT_PCCT, ACPI_DMT_PMTT, ACPI_DMT_SLIC, ACPI_DMT_SRAT, @@ -244,6 +245,7 @@ extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Addr[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Size[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Name[]; +extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2OemData[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbgp[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmarHdr[]; @@ -324,6 +326,7 @@ extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmtt2[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmttHdr[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct[]; +extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcctHdr[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct0[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp1[]; extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp2[]; @@ -668,11 +671,19 @@ void); void -AcpiDmAddToExternalList ( +AcpiDmAddOpToExternalList ( ACPI_PARSE_OBJECT *Op, char *Path, UINT8 Type, - UINT32 Value); + UINT32 Value, + UINT16 Flags); + +void +AcpiDmAddNodeToExternalList ( + ACPI_NAMESPACE_NODE *Node, + UINT8 Type, + UINT32 Value, + UINT16 Flags); void AcpiDmAddExternalsToNamespace ( diff -Nru acpica-unix-20131115/source/include/acdispat.h acpica-unix-20140114/source/include/acdispat.h --- acpica-unix-20131115/source/include/acdispat.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acdispat.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acevents.h acpica-unix-20140114/source/include/acevents.h --- acpica-unix-20131115/source/include/acevents.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acevents.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -206,9 +206,10 @@ ACPI_GPE_BLOCK_INFO *GpeBlock, void *Context); -ACPI_GPE_XRUPT_INFO * +ACPI_STATUS AcpiEvGetGpeXruptBlock ( - UINT32 InterruptNumber); + UINT32 InterruptNumber, + ACPI_GPE_XRUPT_INFO **GpeXruptBlock); ACPI_STATUS AcpiEvDeleteGpeXrupt ( diff -Nru acpica-unix-20131115/source/include/acexcep.h acpica-unix-20140114/source/include/acexcep.h --- acpica-unix-20131115/source/include/acexcep.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acexcep.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acglobal.h acpica-unix-20140114/source/include/acglobal.h --- acpica-unix-20131115/source/include/acglobal.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acglobal.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -121,6 +121,25 @@ UINT8 ACPI_INIT_GLOBAL (AcpiGbl_CopyDsdtLocally, FALSE); /* + * Optionally ignore an XSDT if present and use the RSDT instead. + * Although the ACPI specification requires that an XSDT be used instead + * of the RSDT, the XSDT has been found to be corrupt or ill-formed on + * some machines. Default behavior is to use the XSDT if present. + */ +UINT8 ACPI_INIT_GLOBAL (AcpiGbl_DoNotUseXsdt, FALSE); + + +/* + * Optionally use 32-bit FADT addresses if and when there is a conflict + * (address mismatch) between the 32-bit and 64-bit versions of the + * address. Although ACPICA adheres to the ACPI specification which + * requires the use of the corresponding 64-bit address if it is non-zero, + * some machines have been found to have a corrupted non-zero 64-bit + * address. Default is FALSE, do not favor the 32-bit addresses. + */ +UINT8 ACPI_INIT_GLOBAL (AcpiGbl_Use32BitFadtAddresses, FALSE); + +/* * Optionally truncate I/O addresses to 16 bits. Provides compatibility * with other ACPI implementations. NOTE: During ACPICA initialization, * this value is set to TRUE if any Windows OSI strings have been @@ -492,6 +511,19 @@ /***************************************************************************** * + * Application globals + * + ****************************************************************************/ + +#ifdef ACPI_APPLICATION + +ACPI_FILE ACPI_INIT_GLOBAL (AcpiGbl_DebugFile, NULL); + +#endif /* ACPI_APPLICATION */ + + +/***************************************************************************** + * * Info/help support * ****************************************************************************/ diff -Nru acpica-unix-20131115/source/include/achware.h acpica-unix-20140114/source/include/achware.h --- acpica-unix-20131115/source/include/achware.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/achware.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acinterp.h acpica-unix-20140114/source/include/acinterp.h --- acpica-unix-20131115/source/include/acinterp.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acinterp.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/aclocal.h acpica-unix-20140114/source/include/aclocal.h --- acpica-unix-20131115/source/include/aclocal.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/aclocal.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -1218,17 +1218,17 @@ struct acpi_external_list *Next; UINT32 Value; UINT16 Length; + UINT16 Flags; UINT8 Type; - UINT8 Flags; - BOOLEAN Resolved; - BOOLEAN Emitted; } ACPI_EXTERNAL_LIST; /* Values for Flags field above */ -#define ACPI_IPATH_ALLOCATED 0x01 -#define ACPI_FROM_REFERENCE_FILE 0x02 +#define ACPI_EXT_RESOLVED_REFERENCE 0x01 /* Object was resolved during cross ref */ +#define ACPI_EXT_ORIGIN_FROM_FILE 0x02 /* External came from a file */ +#define ACPI_EXT_INTERNAL_PATH_ALLOCATED 0x04 /* Deallocate internal path on completion */ +#define ACPI_EXT_EXTERNAL_EMITTED 0x08 /* External() statement has been emitted */ typedef struct acpi_external_file diff -Nru acpica-unix-20131115/source/include/acmacros.h acpica-unix-20140114/source/include/acmacros.h --- acpica-unix-20131115/source/include/acmacros.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acmacros.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -64,17 +64,21 @@ #define ACPI_SET64(ptr, val) (*ACPI_CAST64 (ptr) = (UINT64) (val)) /* - * printf() format helpers + * printf() format helpers. These macros are workarounds for the difficulties + * with emitting 64-bit integers and 64-bit pointers with the same code + * for both 32-bit and 64-bit hosts. */ - -/* Split 64-bit integer into two 32-bit values. Use with %8.8X%8.8X */ - #define ACPI_FORMAT_UINT64(i) ACPI_HIDWORD(i), ACPI_LODWORD(i) #if ACPI_MACHINE_WIDTH == 64 #define ACPI_FORMAT_NATIVE_UINT(i) ACPI_FORMAT_UINT64(i) +#define ACPI_FORMAT_TO_UINT(i) ACPI_FORMAT_UINT64(i) +#define ACPI_PRINTF_UINT "0x%8.8X%8.8X" + #else -#define ACPI_FORMAT_NATIVE_UINT(i) 0, (i) +#define ACPI_FORMAT_NATIVE_UINT(i) 0, (UINT32) (i) +#define ACPI_FORMAT_TO_UINT(i) (UINT32) (i) +#define ACPI_PRINTF_UINT "0x%8.8X" #endif diff -Nru acpica-unix-20131115/source/include/acnames.h acpica-unix-20140114/source/include/acnames.h --- acpica-unix-20131115/source/include/acnames.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acnames.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acnamesp.h acpica-unix-20140114/source/include/acnamesp.h --- acpica-unix-20131115/source/include/acnamesp.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acnamesp.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acobject.h acpica-unix-20140114/source/include/acobject.h --- acpica-unix-20131115/source/include/acobject.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acobject.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acopcode.h acpica-unix-20140114/source/include/acopcode.h --- acpica-unix-20131115/source/include/acopcode.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acopcode.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acoutput.h acpica-unix-20140114/source/include/acoutput.h --- acpica-unix-20131115/source/include/acoutput.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acoutput.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acparser.h acpica-unix-20140114/source/include/acparser.h --- acpica-unix-20131115/source/include/acparser.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acparser.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acpi.h acpica-unix-20140114/source/include/acpi.h --- acpica-unix-20131115/source/include/acpi.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acpi.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -62,5 +62,8 @@ #include "acrestyp.h" /* Resource Descriptor structs */ #include "acpiosxf.h" /* OSL interfaces (ACPICA-to-OS) */ #include "acpixf.h" /* ACPI core subsystem external interfaces */ +#ifdef ACPI_NATIVE_INTERFACE_HEADER +#include ACPI_NATIVE_INTERFACE_HEADER +#endif #endif /* __ACPI_H__ */ diff -Nru acpica-unix-20131115/source/include/acpiosxf.h acpica-unix-20140114/source/include/acpiosxf.h --- acpica-unix-20131115/source/include/acpiosxf.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acpiosxf.h 2014-01-28 13:06:26.000000000 +0000 @@ -7,7 +7,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acpixf.h acpica-unix-20140114/source/include/acpixf.h --- acpica-unix-20131115/source/include/acpixf.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acpixf.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -47,7 +47,7 @@ /* Current ACPICA subsystem version in YYYYMMDD format */ -#define ACPI_CA_VERSION 0x20131115 +#define ACPI_CA_VERSION 0x20140114 #include "acconfig.h" #include "actypes.h" @@ -70,17 +70,19 @@ /* ACPICA runtime options */ -extern UINT8 AcpiGbl_EnableInterpreterSlack; extern UINT8 AcpiGbl_AllMethodsSerialized; -extern UINT8 AcpiGbl_CreateOsiMethod; -extern UINT8 AcpiGbl_UseDefaultRegisterWidths; -extern ACPI_NAME AcpiGbl_TraceMethodName; -extern UINT32 AcpiGbl_TraceFlags; -extern UINT8 AcpiGbl_EnableAmlDebugObject; extern UINT8 AcpiGbl_CopyDsdtLocally; -extern UINT8 AcpiGbl_TruncateIoAddresses; +extern UINT8 AcpiGbl_CreateOsiMethod; extern UINT8 AcpiGbl_DisableAutoRepair; extern UINT8 AcpiGbl_DisableSsdtTableLoad; +extern UINT8 AcpiGbl_DoNotUseXsdt; +extern UINT8 AcpiGbl_EnableAmlDebugObject; +extern UINT8 AcpiGbl_EnableInterpreterSlack; +extern UINT32 AcpiGbl_TraceFlags; +extern ACPI_NAME AcpiGbl_TraceMethodName; +extern UINT8 AcpiGbl_TruncateIoAddresses; +extern UINT8 AcpiGbl_Use32BitFadtAddresses; +extern UINT8 AcpiGbl_UseDefaultRegisterWidths; /* diff -Nru acpica-unix-20131115/source/include/acpredef.h acpica-unix-20140114/source/include/acpredef.h --- acpica-unix-20131115/source/include/acpredef.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acpredef.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acresrc.h acpica-unix-20140114/source/include/acresrc.h --- acpica-unix-20131115/source/include/acresrc.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acresrc.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acrestyp.h acpica-unix-20140114/source/include/acrestyp.h --- acpica-unix-20131115/source/include/acrestyp.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acrestyp.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/acstruct.h acpica-unix-20140114/source/include/acstruct.h --- acpica-unix-20131115/source/include/acstruct.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acstruct.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/actables.h acpica-unix-20140114/source/include/actables.h --- acpica-unix-20131115/source/include/actables.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actables.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/actbl.h acpica-unix-20140114/source/include/actbl.h --- acpica-unix-20131115/source/include/actbl.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actbl.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -203,6 +203,9 @@ } ACPI_TABLE_XSDT; +#define ACPI_RSDT_ENTRY_SIZE (sizeof (UINT32)) +#define ACPI_XSDT_ENTRY_SIZE (sizeof (UINT64)) + /******************************************************************************* * diff -Nru acpica-unix-20131115/source/include/actbl1.h acpica-unix-20140114/source/include/actbl1.h --- acpica-unix-20131115/source/include/actbl1.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actbl1.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -524,7 +524,7 @@ UINT8 Enabled; UINT32 RecordsToPreallocate; UINT32 MaxSectionsPerRecord; - UINT32 Bus; + UINT32 Bus; /* Bus and Segment numbers */ UINT16 Device; UINT16 Function; UINT16 DeviceControl; @@ -541,6 +541,14 @@ #define ACPI_HEST_FIRMWARE_FIRST (1) #define ACPI_HEST_GLOBAL (1<<1) +/* + * Macros to access the bus/segment numbers in Bus field above: + * Bus number is encoded in bits 7:0 + * Segment number is encoded in bits 23:8 + */ +#define ACPI_HEST_BUS(Bus) ((Bus) & 0xFF) +#define ACPI_HEST_SEGMENT(Bus) (((Bus) >> 8) & 0xFFFF) + /* Hardware Error Notification */ diff -Nru acpica-unix-20131115/source/include/actbl2.h acpica-unix-20140114/source/include/actbl2.h --- acpica-unix-20131115/source/include/actbl2.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actbl2.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -373,6 +373,14 @@ } ACPI_TABLE_DBG2; +typedef struct acpi_dbg2_header +{ + UINT32 InfoOffset; + UINT32 InfoCount; + +} ACPI_DBG2_HEADER; + + /* Debug Device Information Subtable */ typedef struct acpi_dbg2_device diff -Nru acpica-unix-20131115/source/include/actbl3.h acpica-unix-20140114/source/include/actbl3.h --- acpica-unix-20131115/source/include/actbl3.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actbl3.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -440,8 +440,7 @@ { ACPI_TABLE_HEADER Header; /* Common ACPI table header */ UINT32 Flags; - UINT32 Latency; - UINT32 Reserved; + UINT64 Reserved; } ACPI_TABLE_PCCT; @@ -449,8 +448,16 @@ #define ACPI_PCCT_DOORBELL 1 +/* Values for subtable type in ACPI_SUBTABLE_HEADER */ + +enum AcpiPcctType +{ + ACPI_PCCT_TYPE_GENERIC_SUBSPACE = 0, + ACPI_PCCT_TYPE_RESERVED = 1 /* 1 and greater are reserved */ +}; + /* - * PCCT subtables + * PCCT Subtables, correspond to Type in ACPI_SUBTABLE_HEADER */ /* 0: Generic Communications Subspace */ @@ -464,6 +471,9 @@ ACPI_GENERIC_ADDRESS DoorbellRegister; UINT64 PreserveMask; UINT64 WriteMask; + UINT32 Latency; + UINT32 MaxAccessRate; + UINT16 MinTurnaroundTime; } ACPI_PCCT_SUBSPACE; diff -Nru acpica-unix-20131115/source/include/actypes.h acpica-unix-20140114/source/include/actypes.h --- acpica-unix-20131115/source/include/actypes.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/actypes.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -954,8 +954,8 @@ * Miscellaneous common Data Structures used by the interfaces */ #define ACPI_NO_BUFFER 0 -#define ACPI_ALLOCATE_BUFFER (ACPI_SIZE) (-1) -#define ACPI_ALLOCATE_LOCAL_BUFFER (ACPI_SIZE) (-2) +#define ACPI_ALLOCATE_BUFFER (ACPI_SIZE) (-1) /* Let ACPICA allocate buffer */ +#define ACPI_ALLOCATE_LOCAL_BUFFER (ACPI_SIZE) (-2) /* For internal use only (enables tracking) */ typedef struct acpi_buffer { @@ -964,10 +964,6 @@ } ACPI_BUFFER; -/* Free a buffer created in an ACPI_BUFFER via ACPI_ALLOCATE_LOCAL_BUFFER */ - -#define ACPI_FREE_BUFFER(b) ACPI_FREE(b.Pointer) - /* * NameType for AcpiGetName diff -Nru acpica-unix-20131115/source/include/acutils.h acpica-unix-20140114/source/include/acutils.h --- acpica-unix-20131115/source/include/acutils.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/acutils.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -50,7 +50,7 @@ /* Strings used by the disassembler and debugger resource dump routines */ -#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) +#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) extern const char *AcpiGbl_BmDecode[]; extern const char *AcpiGbl_ConfigDecode[]; diff -Nru acpica-unix-20131115/source/include/amlcode.h acpica-unix-20140114/source/include/amlcode.h --- acpica-unix-20131115/source/include/amlcode.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/amlcode.h 2014-01-28 13:06:26.000000000 +0000 @@ -7,7 +7,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/amlresrc.h acpica-unix-20140114/source/include/amlresrc.h --- acpica-unix-20131115/source/include/amlresrc.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/amlresrc.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/accygwin.h acpica-unix-20140114/source/include/platform/accygwin.h --- acpica-unix-20131115/source/include/platform/accygwin.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/accygwin.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acefi.h acpica-unix-20140114/source/include/platform/acefi.h --- acpica-unix-20131115/source/include/platform/acefi.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acefi.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acenv.h acpica-unix-20140114/source/include/platform/acenv.h --- acpica-unix-20131115/source/include/platform/acenv.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acenv.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -97,13 +97,14 @@ #endif /* - * AcpiBin/AcpiDump/AcpiSrc/AcpiXtract configuration. All single + * AcpiBin/AcpiDump/AcpiSrc/AcpiXtract/Example configuration. All single * threaded, with no debug output. */ -#if (defined ACPI_BIN_APP) || \ - (defined ACPI_DUMP_APP) || \ - (defined ACPI_SRC_APP) || \ - (defined ACPI_XTRACT_APP) +#if (defined ACPI_BIN_APP) || \ + (defined ACPI_DUMP_APP) || \ + (defined ACPI_SRC_APP) || \ + (defined ACPI_XTRACT_APP) || \ + (defined ACPI_EXAMPLE_APP) #define ACPI_APPLICATION #define ACPI_SINGLE_THREADED #endif @@ -396,4 +397,13 @@ #endif /* ACPI_USE_SYSTEM_CLIBRARY */ +#ifndef ACPI_FILE +#ifdef ACPI_APPLICATION +#include +#define ACPI_FILE FILE * +#else +#define ACPI_FILE void * +#endif /* ACPI_APPLICATION */ +#endif /* ACPI_FILE */ + #endif /* __ACENV_H__ */ diff -Nru acpica-unix-20131115/source/include/platform/acfreebsd.h acpica-unix-20140114/source/include/platform/acfreebsd.h --- acpica-unix-20131115/source/include/platform/acfreebsd.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acfreebsd.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acgcc.h acpica-unix-20140114/source/include/platform/acgcc.h --- acpica-unix-20131115/source/include/platform/acgcc.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acgcc.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/achaiku.h acpica-unix-20140114/source/include/platform/achaiku.h --- acpica-unix-20131115/source/include/platform/achaiku.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/achaiku.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acintel.h acpica-unix-20140114/source/include/platform/acintel.h --- acpica-unix-20131115/source/include/platform/acintel.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acintel.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/aclinux.h acpica-unix-20140114/source/include/platform/aclinux.h --- acpica-unix-20131115/source/include/platform/aclinux.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/aclinux.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -257,19 +257,6 @@ void __iomem *Virt, ACPI_SIZE Size); -void -AcpiOsGpeCount ( - UINT32 GpeNumber); - -void -AcpiOsFixedEventCount ( - UINT32 FixedEventNumber); - -ACPI_STATUS -AcpiOsHotplugExecute ( - ACPI_OSD_EXEC_CALLBACK Function, - void *Context); - #endif /* __KERNEL__ */ #endif /* __ACLINUX_H__ */ diff -Nru acpica-unix-20131115/source/include/platform/acmacosx.h acpica-unix-20140114/source/include/platform/acmacosx.h --- acpica-unix-20131115/source/include/platform/acmacosx.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acmacosx.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acmsvc.h acpica-unix-20140114/source/include/platform/acmsvc.h --- acpica-unix-20131115/source/include/platform/acmsvc.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acmsvc.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acnetbsd.h acpica-unix-20140114/source/include/platform/acnetbsd.h --- acpica-unix-20131115/source/include/platform/acnetbsd.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acnetbsd.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acos2.h acpica-unix-20140114/source/include/platform/acos2.h --- acpica-unix-20131115/source/include/platform/acos2.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acos2.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acwin.h acpica-unix-20140114/source/include/platform/acwin.h --- acpica-unix-20131115/source/include/platform/acwin.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acwin.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/include/platform/acwin64.h acpica-unix-20140114/source/include/platform/acwin64.h --- acpica-unix-20131115/source/include/platform/acwin64.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/include/platform/acwin64.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/os_specific/service_layers/osfreebsdtbl.c acpica-unix-20140114/source/os_specific/service_layers/osfreebsdtbl.c --- acpica-unix-20131115/source/os_specific/service_layers/osfreebsdtbl.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/osfreebsdtbl.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/os_specific/service_layers/oslinuxtbl.c acpica-unix-20140114/source/os_specific/service_layers/oslinuxtbl.c --- acpica-unix-20131115/source/os_specific/service_layers/oslinuxtbl.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/oslinuxtbl.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -682,7 +682,7 @@ { /* Add mandatory tables to global table list first */ - Status = OslAddTableToList (AP_DUMP_SIG_RSDP, 0); + Status = OslAddTableToList (ACPI_RSDP_NAME, 0); if (ACPI_FAILURE (Status)) { return (Status); @@ -866,7 +866,7 @@ /* Handle special tables whose addresses are not in RSDT/XSDT */ - if (ACPI_COMPARE_NAME (Signature, AP_DUMP_SIG_RSDP) || + if (ACPI_COMPARE_NAME (Signature, ACPI_RSDP_NAME) || ACPI_COMPARE_NAME (Signature, ACPI_SIG_RSDT) || ACPI_COMPARE_NAME (Signature, ACPI_SIG_XSDT) || ACPI_COMPARE_NAME (Signature, ACPI_SIG_DSDT) || diff -Nru acpica-unix-20131115/source/os_specific/service_layers/osunixdir.c acpica-unix-20140114/source/os_specific/service_layers/osunixdir.c --- acpica-unix-20131115/source/os_specific/service_layers/osunixdir.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/osunixdir.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -167,15 +167,17 @@ strcat (temp_str, dir_entry->d_name); err = stat (temp_str, &temp_stat); - free (temp_str); if (err == -1) { fprintf (stderr, "Cannot stat file (should not happen) - %s\n", temp_str); + free (temp_str); return (NULL); } + free (temp_str); + if ((S_ISDIR (temp_stat.st_mode) && (ExternalInfo->RequestedFileType == REQUEST_DIR_ONLY)) || diff -Nru acpica-unix-20131115/source/os_specific/service_layers/osunixmap.c acpica-unix-20140114/source/os_specific/service_layers/osunixmap.c --- acpica-unix-20131115/source/os_specific/service_layers/osunixmap.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/osunixmap.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/os_specific/service_layers/osunixxf.c acpica-unix-20140114/source/os_specific/service_layers/osunixxf.c --- acpica-unix-20131115/source/os_specific/service_layers/osunixxf.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/osunixxf.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -65,7 +65,6 @@ ACPI_MODULE_NAME ("osunixxf") -extern FILE *AcpiGbl_DebugFile; FILE *AcpiGbl_OutputFile; BOOLEAN AcpiGbl_DebugTimeout = FALSE; diff -Nru acpica-unix-20131115/source/os_specific/service_layers/oswindir.c acpica-unix-20140114/source/os_specific/service_layers/oswindir.c --- acpica-unix-20131115/source/os_specific/service_layers/oswindir.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/oswindir.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/os_specific/service_layers/oswintbl.c acpica-unix-20140114/source/os_specific/service_layers/oswintbl.c --- acpica-unix-20131115/source/os_specific/service_layers/oswintbl.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/oswintbl.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/os_specific/service_layers/oswinxf.c acpica-unix-20140114/source/os_specific/service_layers/oswinxf.c --- acpica-unix-20131115/source/os_specific/service_layers/oswinxf.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/os_specific/service_layers/oswinxf.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -64,8 +64,6 @@ ACPI_MODULE_NAME ("oswinxf") -extern FILE *AcpiGbl_DebugFile; - FILE *AcpiGbl_OutputFile; UINT64 TimerFrequency; char TableName[ACPI_NAME_SIZE + 1]; diff -Nru acpica-unix-20131115/source/tools/acpibin/abcompare.c acpica-unix-20140114/source/tools/acpibin/abcompare.c --- acpica-unix-20131115/source/tools/acpibin/abcompare.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpibin/abcompare.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpibin/abmain.c acpica-unix-20140114/source/tools/acpibin/abmain.c --- acpica-unix-20131115/source/tools/acpibin/abmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpibin/abmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpibin/acpibin.h acpica-unix-20140114/source/tools/acpibin/acpibin.h --- acpica-unix-20131115/source/tools/acpibin/acpibin.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpibin/acpibin.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -66,7 +66,6 @@ /* Globals */ EXTERN BOOLEAN INIT_GLOBAL (Gbl_TerseMode, FALSE); -EXTERN FILE INIT_GLOBAL (*AcpiGbl_DebugFile, NULL); /* Prototypes */ diff -Nru acpica-unix-20131115/source/tools/acpidump/acpidump.h acpica-unix-20140114/source/tools/acpidump/acpidump.h --- acpica-unix-20131115/source/tools/acpidump/acpidump.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpidump/acpidump.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -90,10 +90,6 @@ } AP_DUMP_ACTION; -/* Local RSDP signature (Not the same as the actual signature which is "RSD PTR ") */ - -#define AP_DUMP_SIG_RSDP "RSDP" - #define AP_MAX_ACTIONS 32 #define AP_DUMP_ALL_TABLES 0 diff -Nru acpica-unix-20131115/source/tools/acpidump/apdump.c acpica-unix-20140114/source/tools/acpidump/apdump.c --- acpica-unix-20131115/source/tools/acpidump/apdump.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpidump/apdump.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -385,11 +385,7 @@ /* To be friendly, handle tables whose signatures do not match the name */ - if (ACPI_COMPARE_NAME (LocalSignature, AP_DUMP_SIG_RSDP)) - { - strcpy (LocalSignature, AP_DUMP_SIG_RSDP); - } - else if (ACPI_COMPARE_NAME (LocalSignature, "FADT")) + if (ACPI_COMPARE_NAME (LocalSignature, "FADT")) { strcpy (LocalSignature, ACPI_SIG_FADT); } diff -Nru acpica-unix-20131115/source/tools/acpidump/apfiles.c acpica-unix-20140114/source/tools/acpidump/apfiles.c --- acpica-unix-20131115/source/tools/acpidump/apfiles.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpidump/apfiles.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -129,7 +129,7 @@ if (ACPI_VALIDATE_RSDP_SIG (Table->Signature)) { - ACPI_MOVE_NAME (Filename, AP_DUMP_SIG_RSDP); + ACPI_MOVE_NAME (Filename, ACPI_RSDP_NAME); } else { diff -Nru acpica-unix-20131115/source/tools/acpidump/apmain.c acpica-unix-20140114/source/tools/acpidump/apmain.c --- acpica-unix-20131115/source/tools/acpidump/apmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpidump/apmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpiexec/aecommon.h acpica-unix-20140114/source/tools/acpiexec/aecommon.h --- acpica-unix-20131115/source/tools/acpiexec/aecommon.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aecommon.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -63,12 +63,12 @@ #include #include -extern FILE *AcpiGbl_DebugFile; extern BOOLEAN AcpiGbl_IgnoreErrors; extern UINT8 AcpiGbl_RegionFillValue; extern UINT8 AcpiGbl_UseHwReducedFadt; extern BOOLEAN AcpiGbl_DisplayRegionAccess; extern BOOLEAN AcpiGbl_DoInterfaceTests; +extern BOOLEAN AcpiGbl_LoadTestTables; /* Check for unexpected exceptions */ diff -Nru acpica-unix-20131115/source/tools/acpiexec/aeexec.c acpica-unix-20140114/source/tools/acpiexec/aeexec.c --- acpica-unix-20131115/source/tools/acpiexec/aeexec.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aeexec.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -150,13 +150,15 @@ { ACPI_STATUS Status; ACPI_HANDLE Handle; - ACPI_HANDLE Handle2 = NULL; - ACPI_HANDLE Handle3 = NULL; ACPI_GENERIC_ADDRESS BlockAddress; ACPI_HANDLE GpeDevice; + ACPI_OBJECT_TYPE Type; + /* _GPE should always exist */ + Status = AcpiGetHandle (NULL, "\\_GPE", &Handle); + AE_CHECK_OK (AcpiGetHandle, Status); if (ACPI_FAILURE (Status)) { return; @@ -166,17 +168,26 @@ BlockAddress.SpaceId = ACPI_ADR_SPACE_SYSTEM_MEMORY; BlockAddress.Address = 0x76540000; - Status = AcpiGetHandle (NULL, "\\GPE2", &Handle2); + /* Attempt to install a GPE block on GPE2 (if present) */ + + Status = AcpiGetHandle (NULL, "\\GPE2", &Handle); if (ACPI_SUCCESS (Status)) { - Status = AcpiInstallGpeBlock (Handle2, &BlockAddress, 7, 8); + Status = AcpiGetType (Handle, &Type); + if (ACPI_FAILURE (Status) || + (Type != ACPI_TYPE_DEVICE)) + { + return; + } + + Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 7, 8); AE_CHECK_OK (AcpiInstallGpeBlock, Status); - Status = AcpiInstallGpeHandler (Handle2, 8, + Status = AcpiInstallGpeHandler (Handle, 8, ACPI_GPE_LEVEL_TRIGGERED, AeGpeHandler, NULL); AE_CHECK_OK (AcpiInstallGpeHandler, Status); - Status = AcpiEnableGpe (Handle2, 8); + Status = AcpiEnableGpe (Handle, 8); AE_CHECK_OK (AcpiEnableGpe, Status); Status = AcpiGetGpeDevice (0x30, &GpeDevice); @@ -191,14 +202,23 @@ Status = AcpiGetGpeDevice (AcpiCurrentGpeCount, &GpeDevice); AE_CHECK_STATUS (AcpiGetGpeDevice, Status, AE_NOT_EXIST); - Status = AcpiRemoveGpeHandler (Handle2, 8, AeGpeHandler); + Status = AcpiRemoveGpeHandler (Handle, 8, AeGpeHandler); AE_CHECK_OK (AcpiRemoveGpeHandler, Status); } - Status = AcpiGetHandle (NULL, "\\GPE3", &Handle3); + /* Attempt to install a GPE block on GPE3 (if present) */ + + Status = AcpiGetHandle (NULL, "\\GPE3", &Handle); if (ACPI_SUCCESS (Status)) { - Status = AcpiInstallGpeBlock (Handle3, &BlockAddress, 8, 11); + Status = AcpiGetType (Handle, &Type); + if (ACPI_FAILURE (Status) || + (Type != ACPI_TYPE_DEVICE)) + { + return; + } + + Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 8, 11); AE_CHECK_OK (AcpiInstallGpeBlock, Status); } } @@ -344,31 +364,42 @@ return (Status); } + Status = AE_ERROR; + if (ReturnValue.Length < sizeof (ACPI_OBJECT)) { AcpiOsPrintf ("Return value from _OSI method too small, %.8X\n", ReturnValue.Length); - return (AE_ERROR); + goto ErrorExit; } Obj = ReturnValue.Pointer; if (Obj->Type != ACPI_TYPE_INTEGER) { AcpiOsPrintf ("Invalid return type from _OSI method, %.2X\n", Obj->Type); - return (AE_ERROR); + goto ErrorExit; } if (Obj->Integer.Value != ExpectedResult) { AcpiOsPrintf ("Invalid return value from _OSI, expected %.8X found %.8X\n", ExpectedResult, (UINT32) Obj->Integer.Value); - return (AE_ERROR); + goto ErrorExit; } + Status = AE_OK; + /* Reset the OSI data */ AcpiGbl_OsiData = 0; - return (AE_OK); + +ErrorExit: + + /* Free a buffer created via ACPI_ALLOCATE_BUFFER */ + + AcpiOsFree (ReturnValue.Pointer); + + return (Status); } diff -Nru acpica-unix-20131115/source/tools/acpiexec/aehandlers.c acpica-unix-20140114/source/tools/acpiexec/aehandlers.c --- acpica-unix-20131115/source/tools/acpiexec/aehandlers.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aehandlers.c 2014-01-28 13:06:26.000000000 +0000 @@ -4,42 +4,114 @@ * *****************************************************************************/ -/* - * Copyright (C) 2000 - 2013, Intel Corp. +/****************************************************************************** + * + * 1. Copyright Notice + * + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions, and the following disclaimer, - * without modification. - * 2. Redistributions in binary form must reproduce at minimum a disclaimer - * substantially similar to the "NO WARRANTY" disclaimer below - * ("Disclaimer") and any redistribution must be conditioned upon - * including a substantially similar Disclaimer requirement for further - * binary redistribution. - * 3. Neither the names of the above-listed copyright holders nor the names - * of any contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * Alternatively, this software may be distributed under the terms of the - * GNU General Public License ("GPL") version 2 as published by the Free - * Software Foundation. - * - * NO WARRANTY - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING - * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. - */ + * 2. License + * + * 2.1. This is your license from Intel Corp. under its intellectual property + * rights. You may have additional license terms from the party that provided + * you this software, covering your right to use that party's intellectual + * property rights. + * + * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a + * copy of the source code appearing in this file ("Covered Code") an + * irrevocable, perpetual, worldwide license under Intel's copyrights in the + * base code distributed originally by Intel ("Original Intel Code") to copy, + * make derivatives, distribute, use and display any portion of the Covered + * Code in any form, with the right to sublicense such rights; and + * + * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent + * license (with the right to sublicense), under only those claims of Intel + * patents that are infringed by the Original Intel Code, to make, use, sell, + * offer to sell, and import the Covered Code and derivative works thereof + * solely to the minimum extent necessary to exercise the above copyright + * license, and in no event shall the patent license extend to any additions + * to or modifications of the Original Intel Code. No other license or right + * is granted directly or by implication, estoppel or otherwise; + * + * The above copyright and patent license is granted only if the following + * conditions are met: + * + * 3. Conditions + * + * 3.1. Redistribution of Source with Rights to Further Distribute Source. + * Redistribution of source code of any substantial portion of the Covered + * Code or modification with rights to further distribute source must include + * the above Copyright Notice, the above License, this list of Conditions, + * and the following Disclaimer and Export Compliance provision. In addition, + * Licensee must cause all Covered Code to which Licensee contributes to + * contain a file documenting the changes Licensee made to create that Covered + * Code and the date of any change. Licensee must include in that file the + * documentation of any changes made by any predecessor Licensee. Licensee + * must include a prominent statement that the modification is derived, + * directly or indirectly, from Original Intel Code. + * + * 3.2. Redistribution of Source with no Rights to Further Distribute Source. + * Redistribution of source code of any substantial portion of the Covered + * Code or modification without rights to further distribute source must + * include the following Disclaimer and Export Compliance provision in the + * documentation and/or other materials provided with distribution. In + * addition, Licensee may not authorize further sublicense of source of any + * portion of the Covered Code, and must include terms to the effect that the + * license from Licensee to its licensee is limited to the intellectual + * property embodied in the software Licensee provides to its licensee, and + * not to intellectual property embodied in modifications its licensee may + * make. + * + * 3.3. Redistribution of Executable. Redistribution in executable form of any + * substantial portion of the Covered Code or modification must reproduce the + * above Copyright Notice, and the following Disclaimer and Export Compliance + * provision in the documentation and/or other materials provided with the + * distribution. + * + * 3.4. Intel retains all right, title, and interest in and to the Original + * Intel Code. + * + * 3.5. Neither the name Intel nor any other trademark owned or controlled by + * Intel shall be used in advertising or otherwise to promote the sale, use or + * other dealings in products derived from or relating to the Covered Code + * without prior written authorization from Intel. + * + * 4. Disclaimer and Export Compliance + * + * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED + * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE + * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, + * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY + * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY + * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A + * PARTICULAR PURPOSE. + * + * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES + * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR + * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, + * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY + * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL + * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS + * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY + * LIMITED REMEDY. + * + * 4.3. Licensee shall not export, either directly or indirectly, any of this + * software or system incorporating such software without first obtaining any + * required license or other approval from the U. S. Department of Commerce or + * any other agency or department of the United States Government. In the + * event Licensee exports any such software from the United States or + * re-exports any such software from a foreign destination, Licensee shall + * ensure that the distribution and export/re-export of the software is in + * compliance with all laws, regulations, orders, or other restrictions of the + * U.S. Export Administration Regulations. Licensee agrees that neither it nor + * any of its subsidiaries will export/re-export any technical data, process, + * software, or service, directly or indirectly, to any country for which the + * United States government or any agency thereof requires an export license, + * other governmental approval, or letter of assurance, without first obtaining + * such license, approval or letter. + * + *****************************************************************************/ #include "aecommon.h" @@ -149,18 +221,22 @@ BOOLEAN AcpiGbl_DisplayRegionAccess = FALSE; /* - * We will override some of the default region handlers, especially the - * SystemMemory handler, which must be implemented locally. Do not override - * the PCI_Config handler since we would like to exercise the default handler - * code. These handlers are installed "early" - before any _REG methods + * We will override some of the default region handlers, especially + * the SystemMemory handler, which must be implemented locally. + * These handlers are installed "early" - before any _REG methods * are executed - since they are special in the sense that the ACPI spec * declares that they must "always be available". Cannot override the * DataTable region handler either -- needed for test execution. + * + * NOTE: The local region handler will simulate access to these address + * spaces by creating a memory buffer behind each operation region. */ static ACPI_ADR_SPACE_TYPE DefaultSpaceIdList[] = { ACPI_ADR_SPACE_SYSTEM_MEMORY, - ACPI_ADR_SPACE_SYSTEM_IO + ACPI_ADR_SPACE_SYSTEM_IO, + ACPI_ADR_SPACE_PCI_CONFIG, + ACPI_ADR_SPACE_EC }; /* @@ -460,6 +536,8 @@ NewAmlStatus = (ACPI_STATUS) ((ACPI_OBJECT *) ReturnObj.Pointer)->Integer.Value; + /* Free a buffer created via ACPI_ALLOCATE_BUFFER */ + AcpiOsFree (ReturnObj.Pointer); } } @@ -1049,21 +1127,11 @@ Status = AcpiDetachData (Handle, AeAttachedDataHandler); AE_CHECK_OK (AcpiDetachData, Status); - /* Test attach data at the root object */ - - Status = AcpiAttachData (ACPI_ROOT_OBJECT, AeAttachedDataHandler, - AcpiGbl_RootNode); - AE_CHECK_OK (AcpiAttachData, Status); - - Status = AcpiAttachData (ACPI_ROOT_OBJECT, AeAttachedDataHandler2, - AcpiGbl_RootNode); + Status = AcpiAttachData (Handle, AeAttachedDataHandler, Handle); AE_CHECK_OK (AcpiAttachData, Status); /* Test support for multiple attaches */ - Status = AcpiAttachData (Handle, AeAttachedDataHandler, Handle); - AE_CHECK_OK (AcpiAttachData, Status); - Status = AcpiAttachData (Handle, AeAttachedDataHandler2, Handle); AE_CHECK_OK (AcpiAttachData, Status); } @@ -1160,13 +1228,20 @@ ACPI_OPERAND_OBJECT *RegionObject = ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, RegionContext); UINT8 *Buffer = ACPI_CAST_PTR (UINT8, Value); + UINT8 *OldBuffer; + UINT8 *NewBuffer; ACPI_PHYSICAL_ADDRESS BaseAddress; + ACPI_PHYSICAL_ADDRESS BaseAddressEnd; + ACPI_PHYSICAL_ADDRESS RegionAddress; + ACPI_PHYSICAL_ADDRESS RegionAddressEnd; ACPI_SIZE Length; BOOLEAN BufferExists; + BOOLEAN BufferResize; AE_REGION *RegionElement; void *BufferValue; ACPI_STATUS Status; UINT32 ByteWidth; + UINT32 RegionLength; UINT32 i; UINT8 SpaceId; ACPI_CONNECTION_INFO *MyContext; @@ -1449,21 +1524,119 @@ * Search through the linked list for this region's buffer */ BufferExists = FALSE; + BufferResize = FALSE; RegionElement = AeRegions.RegionList; if (AeRegions.NumberOfRegions) { + BaseAddressEnd = BaseAddress + Length - 1; while (!BufferExists && RegionElement) { - if (RegionElement->Address == BaseAddress && - RegionElement->Length == Length && - RegionElement->SpaceId == SpaceId) + RegionAddress = RegionElement->Address; + RegionAddressEnd = RegionElement->Address + RegionElement->Length - 1; + RegionLength = RegionElement->Length; + + /* + * Overlapping Region Support + * + * While searching through the region buffer list, determine if an + * overlap exists between the requested buffer space and the current + * RegionElement space. If there is an overlap then replace the old + * buffer with a new buffer of increased size before continuing to + * do the read or write + */ + if (RegionElement->SpaceId != SpaceId || + BaseAddressEnd < RegionAddress || + BaseAddress > RegionAddressEnd) { - BufferExists = TRUE; + /* + * Requested buffer is outside of the current RegionElement + * bounds + */ + RegionElement = RegionElement->NextRegion; } else { - RegionElement = RegionElement->NextRegion; + /* + * Some amount of buffer space sharing exists. There are 4 cases + * to consider: + * + * 1. Right overlap + * 2. Left overlap + * 3. Left and right overlap + * 4. Fully contained - no resizing required + */ + BufferExists = TRUE; + + if ((BaseAddress >= RegionAddress) && + (BaseAddress <= RegionAddressEnd) && + (BaseAddressEnd > RegionAddressEnd)) + { + /* Right overlap */ + + RegionElement->Length = BaseAddress - + RegionAddress + Length; + BufferResize = TRUE; + } + + else if ((BaseAddressEnd >= RegionAddress) && + (BaseAddressEnd <= RegionAddressEnd) && + (BaseAddress < RegionAddress)) + { + /* Left overlap */ + + RegionElement->Address = BaseAddress; + RegionElement->Length = RegionAddress - + BaseAddress + RegionElement->Length; + BufferResize = TRUE; + } + + else if ((BaseAddress < RegionAddress) && + (BaseAddressEnd > RegionAddressEnd)) + { + /* Left and right overlap */ + + RegionElement->Address = BaseAddress; + RegionElement->Length = Length; + BufferResize = TRUE; + } + + /* + * only remaining case is fully contained for which we don't + * need to do anything + */ + if (BufferResize) + { + NewBuffer = AcpiOsAllocate (RegionElement->Length); + if (!NewBuffer) + { + return (AE_NO_MEMORY); + } + + OldBuffer = RegionElement->Buffer; + RegionElement->Buffer = NewBuffer; + NewBuffer = NULL; + + /* Initialize the region with the default fill value */ + + ACPI_MEMSET (RegionElement->Buffer, + AcpiGbl_RegionFillValue, RegionElement->Length); + + /* + * Get BufferValue to point (within the new buffer) to the + * base address of the old buffer + */ + BufferValue = (UINT8 *) RegionElement->Buffer + + (UINT64) RegionAddress - + (UINT64) RegionElement->Address; + + /* + * Copy the old buffer to its same location within the new + * buffer + */ + ACPI_MEMCPY (BufferValue, OldBuffer, RegionLength); + AcpiOsFree (OldBuffer); + } } } } @@ -1473,9 +1646,8 @@ */ if (!BufferExists) { - /* - * Do the memory allocations first - */ + /* Do the memory allocations first */ + RegionElement = AcpiOsAllocate (sizeof (AE_REGION)); if (!RegionElement) { @@ -1500,8 +1672,8 @@ /* * Increment the number of regions and put this one - * at the head of the list as it will probably get accessed - * more often anyway. + * at the head of the list as it will probably get accessed + * more often anyway. */ AeRegions.NumberOfRegions += 1; @@ -1513,9 +1685,8 @@ AeRegions.RegionList = RegionElement; } - /* - * Calculate the size of the memory copy - */ + /* Calculate the size of the memory copy */ + ByteWidth = (BitWidth / 8); if (BitWidth % 8) diff -Nru acpica-unix-20131115/source/tools/acpiexec/aemain.c acpica-unix-20140114/source/tools/acpiexec/aemain.c --- acpica-unix-20131115/source/tools/acpiexec/aemain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aemain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -58,7 +58,6 @@ * Windows: The setargv.obj module must be linked in to automatically * expand wildcards. */ - extern BOOLEAN AcpiGbl_DebugTimeout; /* Local prototypes */ @@ -90,6 +89,7 @@ BOOLEAN AcpiGbl_DbOpt_NoRegionSupport = FALSE; UINT8 AcpiGbl_UseHwReducedFadt = FALSE; BOOLEAN AcpiGbl_DoInterfaceTests = FALSE; +BOOLEAN AcpiGbl_LoadTestTables = FALSE; static UINT8 AcpiGbl_ExecutionMode = AE_MODE_COMMAND_LOOP; static char BatchBuffer[AE_BUFFER_SIZE]; /* Batch command buffer */ static AE_TABLE_DESC *AeTableListHead = NULL; @@ -131,6 +131,7 @@ ACPI_OPTION ("-ef", "Enable display of final memory statistics"); ACPI_OPTION ("-ei", "Enable additional tests for ACPICA interfaces"); + ACPI_OPTION ("-el", "Enable loading of additional test tables"); ACPI_OPTION ("-em", "Enable Interpreter Serialized Mode"); ACPI_OPTION ("-es", "Enable Interpreter Slack Mode"); ACPI_OPTION ("-et", "Enable debug semaphore timeout"); @@ -233,6 +234,11 @@ AcpiGbl_DoInterfaceTests = TRUE; break; + case 'l': + + AcpiGbl_LoadTestTables = TRUE; + break; + case 'm': AcpiGbl_AllMethodsSerialized = TRUE; @@ -450,6 +456,8 @@ AcpiGbl_Optind++; } + printf ("\n"); + /* Build a local RSDT with all tables and let ACPICA process the RSDT */ Status = AeBuildLocalTables (TableCount, AeTableListHead); diff -Nru acpica-unix-20131115/source/tools/acpiexec/aetables.c acpica-unix-20140114/source/tools/acpiexec/aetables.c --- acpica-unix-20131115/source/tools/acpiexec/aetables.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aetables.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -49,6 +49,12 @@ /* Local prototypes */ +static void +AeInitializeTableHeader ( + ACPI_TABLE_HEADER *Header, + char *Signature, + UINT32 Length); + void AeTableOverride ( ACPI_TABLE_HEADER *ExistingTable, @@ -81,9 +87,8 @@ */ static ACPI_TABLE_XSDT *LocalXSDT; -#define BASE_XSDT_TABLES 10 -#define BASE_XSDT_SIZE (sizeof (ACPI_TABLE_XSDT) + \ - ((BASE_XSDT_TABLES -1) * sizeof (UINT64))) +#define BASE_XSDT_TABLES 9 +#define BASE_XSDT_SIZE ((BASE_XSDT_TABLES) * sizeof (UINT64)) #define ACPI_MAX_INIT_TABLES (32) static ACPI_TABLE_DESC Tables[ACPI_MAX_INIT_TABLES]; @@ -104,6 +109,12 @@ ACPI_TABLE_HEADER **NewTable) { + if (!AcpiGbl_LoadTestTables) + { + *NewTable = NULL; + return; + } + /* This code exercises the table override mechanism in the core */ if (ACPI_COMPARE_NAME (ExistingTable->Signature, ACPI_SIG_DSDT)) @@ -122,6 +133,38 @@ /****************************************************************************** * + * FUNCTION: AeInitializeTableHeader + * + * PARAMETERS: Header - A valid standard ACPI table header + * Signature - Signature to insert + * Length - Length of the table + * + * RETURN: None. Header is modified. + * + * DESCRIPTION: Initialize the table header for a local ACPI table. + * + *****************************************************************************/ + +static void +AeInitializeTableHeader ( + ACPI_TABLE_HEADER *Header, + char *Signature, + UINT32 Length) +{ + + ACPI_MOVE_NAME (Header->Signature, Signature); + Header->Length = Length; + + Header->OemRevision = 0x1001; + ACPI_STRNCPY (Header->OemId, "Intel", ACPI_OEM_ID_SIZE); + ACPI_STRNCPY (Header->OemTableId, "AcpiExec", ACPI_OEM_TABLE_ID_SIZE); + ACPI_STRNCPY (Header->AslCompilerId, "INTL", ACPI_NAME_SIZE); + Header->AslCompilerRevision = 0x20131218; +} + + +/****************************************************************************** + * * FUNCTION: AeBuildLocalTables * * PARAMETERS: TableCount - Number of tables on the command line @@ -147,9 +190,9 @@ /* - * Update the table count. For DSDT, it is not put into the XSDT. For - * FADT, this is already accounted for since we usually install a - * local FADT. + * Update the table count. For the DSDT, it is not put into the XSDT. + * For the FADT, this table is already accounted for since we usually + * install a local FADT. */ NextTable = TableList; while (NextTable) @@ -162,7 +205,11 @@ NextTable = NextTable->Next; } - XsdtSize = BASE_XSDT_SIZE + (TableCount * sizeof (UINT64)); + XsdtSize = (((TableCount + 1) * sizeof (UINT64)) + sizeof (ACPI_TABLE_HEADER)); + if (AcpiGbl_LoadTestTables) + { + XsdtSize += BASE_XSDT_SIZE; + } /* Build an XSDT */ @@ -173,41 +220,18 @@ } ACPI_MEMSET (LocalXSDT, 0, XsdtSize); - ACPI_MOVE_NAME (LocalXSDT->Header.Signature, ACPI_SIG_XSDT); - LocalXSDT->Header.Length = XsdtSize; - LocalXSDT->Header.Revision = 1; - - LocalXSDT->TableOffsetEntry[0] = ACPI_PTR_TO_PHYSADDR (&LocalTEST); - LocalXSDT->TableOffsetEntry[1] = ACPI_PTR_TO_PHYSADDR (&LocalBADTABLE); - LocalXSDT->TableOffsetEntry[2] = ACPI_PTR_TO_PHYSADDR (&LocalFADT); - - /* Install two SSDTs to test multiple table support */ - - LocalXSDT->TableOffsetEntry[3] = ACPI_PTR_TO_PHYSADDR (&Ssdt1Code); - LocalXSDT->TableOffsetEntry[4] = ACPI_PTR_TO_PHYSADDR (&Ssdt2Code); - - /* Install the OEM1 table to test LoadTable */ + AeInitializeTableHeader ((void *) LocalXSDT, ACPI_SIG_XSDT, XsdtSize); - LocalXSDT->TableOffsetEntry[5] = ACPI_PTR_TO_PHYSADDR (&Oem1Code); - - /* Install the OEMx table to test LoadTable */ - - LocalXSDT->TableOffsetEntry[6] = ACPI_PTR_TO_PHYSADDR (&OemxCode); - - /* Install the ECDT table to test _REG */ - - LocalXSDT->TableOffsetEntry[7] = ACPI_PTR_TO_PHYSADDR (&EcdtCode); - - /* Install two UEFIs to test multiple table support */ - - LocalXSDT->TableOffsetEntry[8] = ACPI_PTR_TO_PHYSADDR (&Uefi1Code); - LocalXSDT->TableOffsetEntry[9] = ACPI_PTR_TO_PHYSADDR (&Uefi2Code); + LocalXSDT->TableOffsetEntry[0] = ACPI_PTR_TO_PHYSADDR (&LocalFADT); + NextIndex = 1; /* * Install the user tables. The DSDT must be installed in the FADT. * All other tables are installed directly into the XSDT. + * + * Note: The tables are loaded in reverse order from the incoming + * input, which makes it match the command line order. */ - NextIndex = BASE_XSDT_TABLES; NextTable = TableList; while (NextTable) { @@ -225,38 +249,73 @@ /* The incoming user table is a DSDT */ - DsdtAddress = ACPI_PTR_TO_PHYSADDR (&DsdtCode); + DsdtAddress = ACPI_PTR_TO_PHYSADDR (NextTable->Table); DsdtToInstallOverride = NextTable->Table; } else if (ACPI_COMPARE_NAME (NextTable->Table->Signature, ACPI_SIG_FADT)) { ExternalFadt = ACPI_CAST_PTR (ACPI_TABLE_FADT, NextTable->Table); - LocalXSDT->TableOffsetEntry[2] = ACPI_PTR_TO_PHYSADDR (NextTable->Table); + LocalXSDT->TableOffsetEntry[0] = ACPI_PTR_TO_PHYSADDR (NextTable->Table); } else { /* Install the table in the XSDT */ - LocalXSDT->TableOffsetEntry[NextIndex] = ACPI_PTR_TO_PHYSADDR (NextTable->Table); + LocalXSDT->TableOffsetEntry[TableCount - NextIndex + 1] = + ACPI_PTR_TO_PHYSADDR (NextTable->Table); NextIndex++; } NextTable = NextTable->Next; } - /* Build an RSDP */ + /* Install the optional extra local tables */ + + if (AcpiGbl_LoadTestTables) + { + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&LocalTEST); + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&LocalBADTABLE); + + /* Install two SSDTs to test multiple table support */ + + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Ssdt1Code); + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Ssdt2Code); + + /* Install the OEM1 table to test LoadTable */ + + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Oem1Code); + + /* Install the OEMx table to test LoadTable */ + + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&OemxCode); + + /* Install the ECDT table to test _REG */ + + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&EcdtCode); + + /* Install two UEFIs to test multiple table support */ + + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Uefi1Code); + LocalXSDT->TableOffsetEntry[NextIndex++] = ACPI_PTR_TO_PHYSADDR (&Uefi2Code); + } + + /* Build an RSDP. Contains a valid XSDT only, no RSDT */ ACPI_MEMSET (&LocalRSDP, 0, sizeof (ACPI_TABLE_RSDP)); ACPI_MAKE_RSDP_SIG (LocalRSDP.Signature); - ACPI_MEMCPY (LocalRSDP.OemId, "I_TEST", 6); + ACPI_MEMCPY (LocalRSDP.OemId, "Intel", 6); + LocalRSDP.Revision = 2; LocalRSDP.XsdtPhysicalAddress = ACPI_PTR_TO_PHYSADDR (LocalXSDT); - LocalRSDP.Length = sizeof (ACPI_TABLE_XSDT); + LocalRSDP.Length = sizeof (ACPI_TABLE_RSDP); /* Set checksums for both XSDT and RSDP */ + LocalXSDT->Header.Checksum = 0; LocalXSDT->Header.Checksum = (UINT8) -AcpiTbChecksum ( (void *) LocalXSDT, LocalXSDT->Header.Length); + + LocalRSDP.Checksum = 0; LocalRSDP.Checksum = (UINT8) -AcpiTbChecksum ( (void *) &LocalRSDP, ACPI_RSDP_CHECKSUM_LENGTH); @@ -268,6 +327,12 @@ DsdtToInstallOverride = ACPI_CAST_PTR (ACPI_TABLE_HEADER, LocalDsdtCode); } + /* + * Build an FADT. There are three options for the FADT: + * 1) Incoming external FADT specified on the command line + * 2) A "hardware reduced" local FADT + * 3) A fully featured local FADT + */ if (ExternalFadt) { /* @@ -280,6 +345,8 @@ ExternalFadt->Facs = ACPI_PTR_TO_PHYSADDR (&LocalFACS); } + /* Is there room in the FADT for the XDsdst and XFacs 64-bit pointers? */ + if (ExternalFadt->Header.Length > ACPI_PTR_DIFF (&ExternalFadt->XDsdt, ExternalFadt)) { ExternalFadt->XDsdt = DsdtAddress; @@ -312,7 +379,8 @@ * Build a local FADT so we can test the hardware/event init */ ACPI_MEMSET (&LocalFADT, 0, sizeof (ACPI_TABLE_FADT)); - ACPI_MOVE_NAME (LocalFADT.Header.Signature, ACPI_SIG_FADT); + LocalFADT.Header.Revision = 5; + AeInitializeTableHeader ((void *) &LocalFADT, ACPI_SIG_FADT, sizeof (ACPI_TABLE_FADT)); /* Setup FADT header and DSDT/FACS addresses */ @@ -322,9 +390,6 @@ LocalFADT.XDsdt = DsdtAddress; LocalFADT.XFacs = ACPI_PTR_TO_PHYSADDR (&LocalFACS); - LocalFADT.Header.Revision = 3; - LocalFADT.Header.Length = sizeof (ACPI_TABLE_FADT); - /* Miscellaneous FADT fields */ LocalFADT.Gpe0BlockLength = 16; @@ -347,7 +412,7 @@ LocalFADT.Pm2ControlBlock = 0xC0; LocalFADT.Pm2ControlLength = 1; - /* Setup one example X-64 field */ + /* Setup one example X-64 GAS field */ LocalFADT.XPm1bEventBlock.SpaceId = ACPI_ADR_SPACE_SYSTEM_IO; LocalFADT.XPm1bEventBlock.Address = LocalFADT.Pm1bEventBlock; @@ -368,29 +433,34 @@ LocalFACS.Length = sizeof (ACPI_TABLE_FACS); LocalFACS.GlobalLock = 0x11AA0011; - /* - * Build a fake table [TEST] so that we make sure that the - * ACPICA core ignores it - */ - ACPI_MEMSET (&LocalTEST, 0, sizeof (ACPI_TABLE_HEADER)); - ACPI_MOVE_NAME (LocalTEST.Signature, "TEST"); + /* Build the optional local tables */ - LocalTEST.Revision = 1; - LocalTEST.Length = sizeof (ACPI_TABLE_HEADER); - LocalTEST.Checksum = (UINT8) -AcpiTbChecksum ( - (void *) &LocalTEST, LocalTEST.Length); + if (AcpiGbl_LoadTestTables) + { + /* + * Build a fake table [TEST] so that we make sure that the + * ACPICA core ignores it + */ + ACPI_MEMSET (&LocalTEST, 0, sizeof (ACPI_TABLE_HEADER)); + ACPI_MOVE_NAME (LocalTEST.Signature, "TEST"); - /* - * Build a fake table with a bad signature [BAD!] so that we make - * sure that the ACPICA core ignores it - */ - ACPI_MEMSET (&LocalBADTABLE, 0, sizeof (ACPI_TABLE_HEADER)); - ACPI_MOVE_NAME (LocalBADTABLE.Signature, "BAD!"); + LocalTEST.Revision = 1; + LocalTEST.Length = sizeof (ACPI_TABLE_HEADER); + LocalTEST.Checksum = (UINT8) -AcpiTbChecksum ( + (void *) &LocalTEST, LocalTEST.Length); - LocalBADTABLE.Revision = 1; - LocalBADTABLE.Length = sizeof (ACPI_TABLE_HEADER); - LocalBADTABLE.Checksum = (UINT8) -AcpiTbChecksum ( - (void *) &LocalBADTABLE, LocalBADTABLE.Length); + /* + * Build a fake table with a bad signature [BAD!] so that we make + * sure that the ACPICA core ignores it + */ + ACPI_MEMSET (&LocalBADTABLE, 0, sizeof (ACPI_TABLE_HEADER)); + ACPI_MOVE_NAME (LocalBADTABLE.Signature, "BAD!"); + + LocalBADTABLE.Revision = 1; + LocalBADTABLE.Length = sizeof (ACPI_TABLE_HEADER); + LocalBADTABLE.Checksum = (UINT8) -AcpiTbChecksum ( + (void *) &LocalBADTABLE, LocalBADTABLE.Length); + } return (AE_OK); } @@ -444,27 +514,30 @@ AcpiFormatException (Status)); } - /* Test multiple table/UEFI support. First, get the headers */ + if (AcpiGbl_LoadTestTables) + { + /* Test multiple table/UEFI support. First, get the headers */ - Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 1, &Header); - AE_CHECK_OK (AcpiGetTableHeader, Status); + Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 1, &Header); + AE_CHECK_OK (AcpiGetTableHeader, Status); - Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 2, &Header); - AE_CHECK_OK (AcpiGetTableHeader, Status); + Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 2, &Header); + AE_CHECK_OK (AcpiGetTableHeader, Status); - Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 3, &Header); - AE_CHECK_STATUS (AcpiGetTableHeader, Status, AE_NOT_FOUND); + Status = AcpiGetTableHeader (ACPI_SIG_UEFI, 3, &Header); + AE_CHECK_STATUS (AcpiGetTableHeader, Status, AE_NOT_FOUND); - /* Now get the actual tables */ + /* Now get the actual tables */ - Status = AcpiGetTable (ACPI_SIG_UEFI, 1, &Table); - AE_CHECK_OK (AcpiGetTable, Status); + Status = AcpiGetTable (ACPI_SIG_UEFI, 1, &Table); + AE_CHECK_OK (AcpiGetTable, Status); - Status = AcpiGetTable (ACPI_SIG_UEFI, 2, &Table); - AE_CHECK_OK (AcpiGetTable, Status); + Status = AcpiGetTable (ACPI_SIG_UEFI, 2, &Table); + AE_CHECK_OK (AcpiGetTable, Status); - Status = AcpiGetTable (ACPI_SIG_UEFI, 3, &Table); - AE_CHECK_STATUS (AcpiGetTable, Status, AE_NOT_FOUND); + Status = AcpiGetTable (ACPI_SIG_UEFI, 3, &Table); + AE_CHECK_STATUS (AcpiGetTable, Status, AE_NOT_FOUND); + } return (AE_OK); } diff -Nru acpica-unix-20131115/source/tools/acpiexec/aetables.h acpica-unix-20140114/source/tools/acpiexec/aetables.h --- acpica-unix-20131115/source/tools/acpiexec/aetables.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpiexec/aetables.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -49,16 +49,7 @@ * Miscellaneous pre-compiled AML ACPI tables to be installed */ -/* Default DSDT. This will be replaced with the input DSDT */ - -static unsigned char DsdtCode[] = -{ - 0x44,0x53,0x44,0x54,0x24,0x00,0x00,0x00, /* 00000000 "DSDT$..." */ - 0x02,0x6F,0x49,0x6E,0x74,0x65,0x6C,0x00, /* 00000008 ".oIntel." */ - 0x4E,0x75,0x6C,0x6C,0x44,0x53,0x44,0x54, /* 00000010 "NullDSDT" */ - 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ - 0x04,0x12,0x08,0x20, -}; +/* Local DSDT used only if not present in the input */ static unsigned char LocalDsdtCode[] = { diff -Nru acpica-unix-20131115/source/tools/acpihelp/acpihelp.h acpica-unix-20140114/source/tools/acpihelp/acpihelp.h --- acpica-unix-20131115/source/tools/acpihelp/acpihelp.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/acpihelp.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpihelp/ahamlops.c acpica-unix-20140114/source/tools/acpihelp/ahamlops.c --- acpica-unix-20131115/source/tools/acpihelp/ahamlops.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/ahamlops.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpihelp/ahaslkey.c acpica-unix-20140114/source/tools/acpihelp/ahaslkey.c --- acpica-unix-20131115/source/tools/acpihelp/ahaslkey.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/ahaslkey.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpihelp/ahaslops.c acpica-unix-20140114/source/tools/acpihelp/ahaslops.c --- acpica-unix-20131115/source/tools/acpihelp/ahaslops.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/ahaslops.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpihelp/ahdecode.c acpica-unix-20140114/source/tools/acpihelp/ahdecode.c --- acpica-unix-20131115/source/tools/acpihelp/ahdecode.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/ahdecode.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpihelp/ahmain.c acpica-unix-20140114/source/tools/acpihelp/ahmain.c --- acpica-unix-20131115/source/tools/acpihelp/ahmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpihelp/ahmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpinames/acpinames.h acpica-unix-20140114/source/tools/acpinames/acpinames.h --- acpica-unix-20131115/source/tools/acpinames/acpinames.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpinames/acpinames.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpinames/anmain.c acpica-unix-20140114/source/tools/acpinames/anmain.c --- acpica-unix-20131115/source/tools/acpinames/anmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpinames/anmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -49,7 +49,6 @@ extern ACPI_TABLE_DESC Tables[]; -FILE *AcpiGbl_DebugFile; static AE_TABLE_DESC *AeTableListHead = NULL; diff -Nru acpica-unix-20131115/source/tools/acpinames/anstubs.c acpica-unix-20140114/source/tools/acpinames/anstubs.c --- acpica-unix-20131115/source/tools/acpinames/anstubs.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpinames/anstubs.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpinames/antables.c acpica-unix-20140114/source/tools/acpinames/antables.c --- acpica-unix-20131115/source/tools/acpinames/antables.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpinames/antables.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpisrc/acpisrc.h acpica-unix-20140114/source/tools/acpisrc/acpisrc.h --- acpica-unix-20131115/source/tools/acpisrc/acpisrc.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/acpisrc.h 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -70,6 +70,7 @@ #define FILE_TYPE_SOURCE 1 #define FILE_TYPE_HEADER 2 #define FILE_TYPE_DIRECTORY 3 +#define FILE_TYPE_PATCH 4 #define CVT_COUNT_TABS 0x00000001 #define CVT_COUNT_NON_ANSI_COMMENTS 0x00000002 @@ -189,6 +190,14 @@ ACPI_IDENTIFIER_TABLE *HeaderSpecialMacroTable; UINT32 HeaderFunctions; + ACPI_STRING_TABLE *PatchStringTable; + ACPI_IDENTIFIER_TABLE *PatchLineTable; + ACPI_IDENTIFIER_TABLE *PatchConditionalTable; + ACPI_IDENTIFIER_TABLE *PatchMacroTable; + ACPI_TYPED_IDENTIFIER_TABLE *PatchStructTable; + ACPI_IDENTIFIER_TABLE *PatchSpecialMacroTable; + UINT32 PatchFunctions; + } ACPI_CONVERSION_TABLE; diff -Nru acpica-unix-20131115/source/tools/acpisrc/ascase.c acpica-unix-20140114/source/tools/acpisrc/ascase.c --- acpica-unix-20131115/source/tools/acpisrc/ascase.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/ascase.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpisrc/asconvrt.c acpica-unix-20140114/source/tools/acpisrc/asconvrt.c --- acpica-unix-20131115/source/tools/acpisrc/asconvrt.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/asconvrt.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpisrc/asfile.c acpica-unix-20140114/source/tools/acpisrc/asfile.c --- acpica-unix-20131115/source/tools/acpisrc/asfile.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/asfile.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -334,6 +334,17 @@ SpecialMacroTable = ConversionTable->HeaderSpecialMacroTable; break; + case FILE_TYPE_PATCH: + + Functions = ConversionTable->PatchFunctions; + StringTable = ConversionTable->PatchStringTable; + LineTable = ConversionTable->PatchLineTable; + ConditionalTable = ConversionTable->PatchConditionalTable; + MacroTable = ConversionTable->PatchMacroTable; + StructTable = ConversionTable->PatchStructTable; + SpecialMacroTable = ConversionTable->PatchSpecialMacroTable; + break; + default: printf ("Unknown file type, cannot process\n"); diff -Nru acpica-unix-20131115/source/tools/acpisrc/asmain.c acpica-unix-20140114/source/tools/acpisrc/asmain.c --- acpica-unix-20131115/source/tools/acpisrc/asmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/asmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -495,10 +495,18 @@ { AsProcessOneFile (ConversionTable, NULL, TargetPath, 0, SourcePath, FILE_TYPE_HEADER); } - else + else if (strstr (SourcePath, ".c")) { AsProcessOneFile (ConversionTable, NULL, TargetPath, 0, SourcePath, FILE_TYPE_SOURCE); } + else if (strstr (SourcePath, ".patch")) + { + AsProcessOneFile (ConversionTable, NULL, TargetPath, 0, SourcePath, FILE_TYPE_PATCH); + } + else + { + printf ("Unknown file type - %s\n", SourcePath); + } } /* Always display final summary and stats */ diff -Nru acpica-unix-20131115/source/tools/acpisrc/asremove.c acpica-unix-20140114/source/tools/acpisrc/asremove.c --- acpica-unix-20131115/source/tools/acpisrc/asremove.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/asremove.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -638,7 +638,9 @@ { char *SubString; char *SubBuffer; - char *LastNonSpace; + char *CommentEnd; + int NewLine; + int NestLevel; SubBuffer = Buffer; @@ -650,40 +652,84 @@ if (SubString) { - /* Find start of the line */ + /* Find start of the macro parameters */ - SubBuffer = SubString; - while (*(SubBuffer - 1) == ' ') + while (*SubString != '(') { - SubBuffer--; + SubString++; } + SubString++; - if (*(SubBuffer - 1) == '\n') + NestLevel = 1; + while (*SubString) { - /* Find last non-space character */ + if (*SubString == '(') + { + NestLevel++; + } + else if (*SubString == ')') + { + NestLevel--; + } + + SubString++; - LastNonSpace = SubBuffer - 1; - while (isspace ((int) *LastNonSpace)) + if (NestLevel == 0) { - LastNonSpace--; + break; } + } + +SkipLine: + + /* Find end of the line */ - if (*LastNonSpace != '\\') + NewLine = FALSE; + while (!NewLine && *SubString) + { + if (*SubString == '\n' && *(SubString - 1) != '\\') { - /* Remove the extra spaces */ + NewLine = TRUE; + } + SubString++; + } + + /* Find end of the line */ + + if (*SubString == '#' || *SubString == '\n') + { + goto SkipLine; + } - SubString = AsRemoveData (SubBuffer, SubString); + SubBuffer = SubString; - /* Enforce an empty line between the invocations */ + /* Find start of the non-space */ - if (*(SubBuffer - 2) == ')') - { - AsInsertData (SubBuffer, "\n", 1); - } + while (*SubString == ' ') + { + SubString++; + } + + /* Find end of the line */ + + if (*SubString == '#' || *SubString == '\n') + { + goto SkipLine; + } + + /* Find end of the line */ + + if (*SubString == '/' || *SubString == '*') + { + CommentEnd = strstr (SubString, "*/"); + if (CommentEnd) + { + SubString = CommentEnd + 2; + goto SkipLine; } } - SubBuffer = SubString + strlen (Keyword); + SubString = AsRemoveData (SubBuffer, SubString); } } } diff -Nru acpica-unix-20131115/source/tools/acpisrc/astable.c acpica-unix-20140114/source/tools/acpisrc/astable.c --- acpica-unix-20131115/source/tools/acpisrc/astable.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/astable.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -90,7 +90,7 @@ char DualLicenseHeader[] = "/*\n" -" * Copyright (C) 2000 - 2013, Intel Corp.\n" +" * Copyright (C) 2000 - 2014, Intel Corp.\n" " * All rights reserved.\n" " *\n" " * Redistribution and use in source and binary forms, with or without\n" @@ -761,6 +761,17 @@ CVT_TRIM_LINES | CVT_MIXED_CASE_TO_UNDERSCORES | CVT_LOWER_CASE_IDENTIFIERS | CVT_TRIM_WHITESPACE | CVT_REMOVE_EMPTY_BLOCKS| CVT_REDUCE_TYPEDEFS | CVT_SPACES_TO_TABS8), + + /* Patch files */ + + LinuxDataTypes, + NULL, + NULL, + NULL, + AcpiIdentifiers, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | + CVT_MIXED_CASE_TO_UNDERSCORES), }; @@ -796,6 +807,16 @@ NULL, (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | CVT_TRIM_LINES | CVT_TRIM_WHITESPACE), + + /* Patch files */ + + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES), }; @@ -826,6 +847,17 @@ NULL, (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | CVT_COUNT_SHORTMULTILINE_COMMENTS), + + /* Patch files */ + + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | + CVT_COUNT_SHORTMULTILINE_COMMENTS), }; @@ -862,6 +894,17 @@ NULL, (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | CVT_COUNT_SHORTMULTILINE_COMMENTS), + + /* Patch files */ + + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | + CVT_COUNT_SHORTMULTILINE_COMMENTS), }; @@ -874,8 +917,8 @@ ACPI_STRING_TABLE CustomReplacements[] = { - {"(c) 1999 - 2012", "(c) 1999 - 2013", REPLACE_WHOLE_WORD}, /* Main ACPICA source */ - {"(c) 2006 - 2012", "(c) 2006 - 2013", REPLACE_WHOLE_WORD}, /* Test suites */ + {"(c) 1999 - 2013", "(c) 1999 - 2014", REPLACE_WHOLE_WORD}, /* Main ACPICA source */ + {"(c) 2006 - 2013", "(c) 2006 - 2014", REPLACE_WHOLE_WORD}, /* Test suites */ #if 0 {"SUPPORT, ASSISTANCE", "SUPPORT, ASSISTANCE", REPLACE_WHOLE_WORD}, /* Fix intel header */ @@ -953,6 +996,16 @@ NULL, (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | CVT_TRIM_LINES | CVT_TRIM_WHITESPACE), + + /* C header files */ + + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES), }; @@ -990,4 +1043,14 @@ LinuxSpecialMacros, (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES | CVT_TRIM_LINES | CVT_TRIM_WHITESPACE), + + /* C header files */ + + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + (CVT_COUNT_TABS | CVT_COUNT_NON_ANSI_COMMENTS | CVT_COUNT_LINES), }; diff -Nru acpica-unix-20131115/source/tools/acpisrc/asutils.c acpica-unix-20140114/source/tools/acpisrc/asutils.c --- acpica-unix-20131115/source/tools/acpisrc/asutils.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpisrc/asutils.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpixtract/acpixtract.c acpica-unix-20140114/source/tools/acpixtract/acpixtract.c --- acpica-unix-20131115/source/tools/acpixtract/acpixtract.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpixtract/acpixtract.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/acpixtract/axmain.c acpica-unix-20140114/source/tools/acpixtract/axmain.c --- acpica-unix-20131115/source/tools/acpixtract/axmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/acpixtract/axmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff -Nru acpica-unix-20131115/source/tools/examples/examples.c acpica-unix-20140114/source/tools/examples/examples.c --- acpica-unix-20131115/source/tools/examples/examples.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/source/tools/examples/examples.c 2014-01-28 13:06:26.000000000 +0000 @@ -1,11 +1,11 @@ /****************************************************************************** * - * Module Name: examples - Example ACPICA code + * Module Name: examples - Example ACPICA initialization and execution code * *****************************************************************************/ /* - * Copyright (C) 2000 - 2013, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -41,18 +41,8 @@ * POSSIBILITY OF SUCH DAMAGES. */ - -/* Set the ACPICA application type for use in include/platform/acenv.h */ - -#ifndef WIN32 -#define WIN32 -#endif - -#define ACPI_DEBUG_OUTPUT - -/* ACPICA public headers */ - -#include "acpi.h" +#define __EXAMPLES_C__ +#include "examples.h" #define _COMPONENT ACPI_EXAMPLE ACPI_MODULE_NAME ("examples") @@ -81,22 +71,35 @@ * *****************************************************************************/ -/* Standard Clib headers */ - -#include -#include /* Local Prototypes */ -ACPI_STATUS -InitializeFullAcpi (void); +static ACPI_STATUS +InitializeFullAcpica (void); -ACPI_STATUS +static ACPI_STATUS InstallHandlers (void); -void +static void +NotifyHandler ( + ACPI_HANDLE Device, + UINT32 Value, + void *Context); + +static void +ExecuteMAIN (void); + +static void ExecuteOSI (void); +ACPI_STATUS +InitializeAcpiTables ( + void); + +ACPI_STATUS +InitializeAcpi ( + void); + /****************************************************************************** * @@ -116,26 +119,28 @@ int argc, char **argv) { - ACPI_FUNCTION_NAME (Examples-main); - ACPI_DEBUG_INITIALIZE (); /* For debug version only */ - InitializeFullAcpi (); - /* Enable debug output, example debug print */ + printf (ACPI_COMMON_SIGNON ("ACPI Example Code")); + + /* Initialize the local ACPI tables (RSDP/RSDT/XSDT/FADT/DSDT/FACS) */ - AcpiDbgLayer = ACPI_EXAMPLE; - AcpiDbgLevel = ACPI_LV_INIT; - ACPI_DEBUG_PRINT ((ACPI_DB_INIT, "Example Debug output\n")); + ExInitializeAcpiTables (); + + /* Initialize the ACPICA subsystem */ + + InitializeFullAcpica (); /* Example warning and error output */ - ACPI_INFO ((AE_INFO, "ACPICA example info message")); - ACPI_WARNING ((AE_INFO, "ACPICA example warning message")); - ACPI_ERROR ((AE_INFO, "ACPICA example error message")); - ACPI_EXCEPTION ((AE_INFO, AE_AML_OPERAND_TYPE, "Example exception message")); + ACPI_INFO ((AE_INFO, "Example ACPICA info message")); + ACPI_WARNING ((AE_INFO, "Example ACPICA warning message")); + ACPI_ERROR ((AE_INFO, "Example ACPICA error message")); + ACPI_EXCEPTION ((AE_INFO, AE_AML_OPERAND_TYPE, "Example ACPICA exception message")); ExecuteOSI (); + ExecuteMAIN (); return (0); } @@ -147,8 +152,8 @@ * *****************************************************************************/ -ACPI_STATUS -InitializeFullAcpi (void) +static ACPI_STATUS +InitializeFullAcpica (void) { ACPI_STATUS Status; @@ -164,6 +169,8 @@ /* Initialize the ACPICA Table Manager and get all ACPI tables */ + ACPI_INFO ((AE_INFO, "Loading ACPI tables")); + Status = AcpiInitializeTables (NULL, 16, FALSE); if (ACPI_FAILURE (Status)) { @@ -233,7 +240,8 @@ * is called, all ACPI tables are available to the host. */ ACPI_STATUS -InitializeAcpiTables (void) +InitializeAcpiTables ( + void) { ACPI_STATUS Status; @@ -251,7 +259,8 @@ * the ACPICA subsystem. */ ACPI_STATUS -InitializeAcpi (void) +InitializeAcpi ( + void) { ACPI_STATUS Status; @@ -315,7 +324,7 @@ * *****************************************************************************/ -void +static void NotifyHandler ( ACPI_HANDLE Device, UINT32 Value, @@ -326,7 +335,7 @@ } -ACPI_STATUS +static ACPI_STATUS InstallHandlers (void) { ACPI_STATUS Status; @@ -348,7 +357,7 @@ /****************************************************************************** * - * Example control method execution. + * Examples of control method execution. * * _OSI is a predefined method that is implemented internally within ACPICA. * @@ -362,7 +371,7 @@ * *****************************************************************************/ -void +static void ExecuteOSI (void) { ACPI_STATUS Status; @@ -372,7 +381,7 @@ ACPI_OBJECT *Object; - ACPI_INFO ((AE_INFO, "Executing OSI method")); + ACPI_INFO ((AE_INFO, "Executing _OSI reserved method")); /* Setup input argument */ @@ -400,7 +409,7 @@ { AcpiOsPrintf ("Return value from _OSI method too small, %.8X\n", ReturnValue.Length); - return; + goto ErrorExit; } /* Expect an integer return value from execution of _OSI */ @@ -412,39 +421,64 @@ } ACPI_INFO ((AE_INFO, "_OSI returned 0x%8.8X", (UINT32) Object->Integer.Value)); - AcpiOsFree (Object); - return; + + +ErrorExit: + + /* Free a buffer created via ACPI_ALLOCATE_BUFFER */ + + AcpiOsFree (ReturnValue.Pointer); } /****************************************************************************** * - * OSL support (only needed to link to the windows OSL) + * Execute an actual control method in the DSDT (MAIN) * *****************************************************************************/ -FILE *AcpiGbl_DebugFile; - -ACPI_PHYSICAL_ADDRESS -AeLocalGetRootPointer ( - void) +static void +ExecuteMAIN (void) { + ACPI_STATUS Status; + ACPI_OBJECT_LIST ArgList; + ACPI_OBJECT Arg[1]; + ACPI_BUFFER ReturnValue; + ACPI_OBJECT *Object; - return (0); -} -ACPI_THREAD_ID -AcpiOsGetThreadId ( - void) -{ - return (0xFFFF); -} + ACPI_INFO ((AE_INFO, "Executing MAIN method")); -ACPI_STATUS -AcpiOsExecute ( - ACPI_EXECUTE_TYPE Type, - ACPI_OSD_EXEC_CALLBACK Function, - void *Context) -{ - return (AE_SUPPORT); + /* Setup input argument */ + + ArgList.Count = 1; + ArgList.Pointer = Arg; + + Arg[0].Type = ACPI_TYPE_STRING; + Arg[0].String.Pointer = "Method [MAIN] is executing"; + Arg[0].String.Length = strlen (Arg[0].String.Pointer); + + /* Ask ACPICA to allocate space for the return object */ + + ReturnValue.Length = ACPI_ALLOCATE_BUFFER; + + Status = AcpiEvaluateObject (NULL, "\\MAIN", &ArgList, &ReturnValue); + if (ACPI_FAILURE (Status)) + { + ACPI_EXCEPTION ((AE_INFO, Status, "While executing MAIN")); + return; + } + + if (ReturnValue.Pointer) + { + /* Obtain and validate the returned ACPI_OBJECT */ + + Object = ReturnValue.Pointer; + if (Object->Type == ACPI_TYPE_STRING) + { + AcpiOsPrintf ("Method [MAIN] returned: \"%s\"\n", Object->String.Pointer); + } + + ACPI_FREE (ReturnValue.Pointer); + } } diff -Nru acpica-unix-20131115/source/tools/examples/examples.h acpica-unix-20140114/source/tools/examples/examples.h --- acpica-unix-20131115/source/tools/examples/examples.h 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/source/tools/examples/examples.h 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,59 @@ +/****************************************************************************** + * + * Module Name: examples.h - Common include for Examples program + * + *****************************************************************************/ + +/* + * Copyright (C) 2000 - 2014, Intel Corp. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification. + * 2. Redistributions in binary form must reproduce at minimum a disclaimer + * substantially similar to the "NO WARRANTY" disclaimer below + * ("Disclaimer") and any redistribution must be conditioned upon + * including a substantially similar Disclaimer requirement for further + * binary redistribution. + * 3. Neither the names of the above-listed copyright holders nor the names + * of any contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * Alternatively, this software may be distributed under the terms of the + * GNU General Public License ("GPL") version 2 as published by the Free + * Software Foundation. + * + * NO WARRANTY + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + */ + +#ifndef _EXAMPLES_H +#define _EXAMPLES_H + +#include "acpi.h" +#include "accommon.h" +#include "acapps.h" +#include "../acpiexec/aecommon.h" + +#include + + +void +ExInitializeAcpiTables ( + void); + +#endif diff -Nru acpica-unix-20131115/source/tools/examples/exstubs.c acpica-unix-20140114/source/tools/examples/exstubs.c --- acpica-unix-20131115/source/tools/examples/exstubs.c 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/source/tools/examples/exstubs.c 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,339 @@ +/****************************************************************************** + * + * Module Name: exstubs - Stub routines for the Example program + * + *****************************************************************************/ + +/* + * Copyright (C) 2000 - 2014, Intel Corp. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification. + * 2. Redistributions in binary form must reproduce at minimum a disclaimer + * substantially similar to the "NO WARRANTY" disclaimer below + * ("Disclaimer") and any redistribution must be conditioned upon + * including a substantially similar Disclaimer requirement for further + * binary redistribution. + * 3. Neither the names of the above-listed copyright holders nor the names + * of any contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * Alternatively, this software may be distributed under the terms of the + * GNU General Public License ("GPL") version 2 as published by the Free + * Software Foundation. + * + * NO WARRANTY + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + */ + +#include "examples.h" + +#include +#include +#include + +#define _COMPONENT ACPI_EXAMPLE + ACPI_MODULE_NAME ("exstubs") + + +/****************************************************************************** + * + * DESCRIPTION: Stubs used to facilitate linkage of the example program + * + *****************************************************************************/ + + +/* Utilities */ + +void +AcpiUtSubsystemShutdown ( + void) +{ +} + +ACPI_STATUS +AcpiUtExecute_STA ( + ACPI_NAMESPACE_NODE *DeviceNode, + UINT32 *StatusFlags) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtExecute_HID ( + ACPI_NAMESPACE_NODE *DeviceNode, + ACPI_PNP_DEVICE_ID **ReturnId) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtExecute_CID ( + ACPI_NAMESPACE_NODE *DeviceNode, + ACPI_PNP_DEVICE_ID_LIST **ReturnCidList) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtExecute_UID ( + ACPI_NAMESPACE_NODE *DeviceNode, + ACPI_PNP_DEVICE_ID **ReturnId) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtExecute_SUB ( + ACPI_NAMESPACE_NODE *DeviceNode, + ACPI_PNP_DEVICE_ID **ReturnId) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtExecutePowerMethods ( + ACPI_NAMESPACE_NODE *DeviceNode, + const char **MethodNames, + UINT8 MethodCount, + UINT8 *OutValues) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtEvaluateNumericObject ( + char *ObjectName, + ACPI_NAMESPACE_NODE *DeviceNode, + UINT64 *Value) +{ + return (AE_NOT_IMPLEMENTED); +} + +ACPI_STATUS +AcpiUtGetResourceEndTag ( + ACPI_OPERAND_OBJECT *ObjDesc, + UINT8 **EndTag) +{ + return (AE_OK); +} + + +/* Hardware manager */ + +UINT32 +AcpiHwGetMode ( + void) +{ + return (0); +} + +ACPI_STATUS +AcpiHwReadPort ( + ACPI_IO_ADDRESS Address, + UINT32 *Value, + UINT32 Width) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiHwWritePort ( + ACPI_IO_ADDRESS Address, + UINT32 Value, + UINT32 Width) +{ + return (AE_OK); +} + + +/* Event manager */ + +ACPI_STATUS +AcpiInstallNotifyHandler ( + ACPI_HANDLE Device, + UINT32 HandlerType, + ACPI_NOTIFY_HANDLER Handler, + void *Context) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvInstallXruptHandlers ( + void) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvInitializeEvents ( + void) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvInstallRegionHandlers ( + void) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvInitializeOpRegions ( + void) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvInitializeRegion ( + ACPI_OPERAND_OBJECT *RegionObj, + BOOLEAN AcpiNsLocked) +{ + return (AE_OK); +} + +#if (!ACPI_REDUCED_HARDWARE) +ACPI_STATUS +AcpiEvDeleteGpeBlock ( + ACPI_GPE_BLOCK_INFO *GpeBlock) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEnable ( + void) +{ + return (AE_OK); +} +#endif /* !ACPI_REDUCED_HARDWARE */ + +void +AcpiEvUpdateGpes ( + ACPI_OWNER_ID TableOwnerId) +{ +} + +ACPI_STATUS +AcpiEvAddressSpaceDispatch ( + ACPI_OPERAND_OBJECT *RegionObj, + ACPI_OPERAND_OBJECT *FieldObj, + UINT32 Function, + UINT32 RegionOffset, + UINT32 BitWidth, + UINT64 *Value) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvAcquireGlobalLock ( + UINT16 Timeout) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvReleaseGlobalLock ( + void) +{ + return (AE_OK); +} + +ACPI_STATUS +AcpiEvQueueNotifyRequest ( + ACPI_NAMESPACE_NODE *Node, + UINT32 NotifyValue) +{ + return (AE_OK); +} + +BOOLEAN +AcpiEvIsNotifyObject ( + ACPI_NAMESPACE_NODE *Node) +{ + return (TRUE); +} + + +/* Namespace manager */ + +ACPI_STATUS +AcpiNsCheckReturnValue ( + ACPI_NAMESPACE_NODE *Node, + ACPI_EVALUATE_INFO *Info, + UINT32 UserParamCount, + ACPI_STATUS ReturnStatus, + ACPI_OPERAND_OBJECT **ReturnObjectPtr) +{ + return (AE_OK); +} + +void +AcpiNsCheckArgumentTypes ( + ACPI_EVALUATE_INFO *Info) +{ + return; +} + +void +AcpiNsCheckArgumentCount ( + char *Pathname, + ACPI_NAMESPACE_NODE *Node, + UINT32 UserParamCount, + const ACPI_PREDEFINED_INFO *Predefined) +{ + return; +} + +void +AcpiNsCheckAcpiCompliance ( + char *Pathname, + ACPI_NAMESPACE_NODE *Node, + const ACPI_PREDEFINED_INFO *Predefined) +{ + return; +} + +const ACPI_PREDEFINED_INFO * +AcpiUtMatchPredefinedMethod ( + char *Name) +{ + return (NULL); +} + +/* OSL interfaces */ + +ACPI_THREAD_ID +AcpiOsGetThreadId ( + void) +{ + return (1); +} + +ACPI_STATUS +AcpiOsExecute ( + ACPI_EXECUTE_TYPE Type, + ACPI_OSD_EXEC_CALLBACK Function, + void *Context) +{ + return (AE_SUPPORT); +} diff -Nru acpica-unix-20131115/source/tools/examples/extables.c acpica-unix-20140114/source/tools/examples/extables.c --- acpica-unix-20131115/source/tools/examples/extables.c 1970-01-01 00:00:00.000000000 +0000 +++ acpica-unix-20140114/source/tools/examples/extables.c 2014-01-28 13:06:26.000000000 +0000 @@ -0,0 +1,484 @@ +/****************************************************************************** + * + * Module Name: extables - ACPI tables for Example program + * + *****************************************************************************/ + +/* + * Copyright (C) 2000 - 2014, Intel Corp. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification. + * 2. Redistributions in binary form must reproduce at minimum a disclaimer + * substantially similar to the "NO WARRANTY" disclaimer below + * ("Disclaimer") and any redistribution must be conditioned upon + * including a substantially similar Disclaimer requirement for further + * binary redistribution. + * 3. Neither the names of the above-listed copyright holders nor the names + * of any contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * Alternatively, this software may be distributed under the terms of the + * GNU General Public License ("GPL") version 2 as published by the Free + * Software Foundation. + * + * NO WARRANTY + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + */ + +#define __EXTABLES_C__ + +#include "examples.h" +#include "actables.h" + +#define _COMPONENT ACPI_EXAMPLE + ACPI_MODULE_NAME ("extables") + +ACPI_PHYSICAL_ADDRESS +AeLocalGetRootPointer ( + void); + + +/****************************************************************************** + * + * ACPICA Example tables and table setup + * + * This module contains the ACPI tables used for the example program. The + * original source code for the tables appears at the end of the module. + * + *****************************************************************************/ + + +/* These tables will be modified at runtime */ + +unsigned char RsdpCode[] = +{ + 0x52,0x53,0x44,0x20,0x50,0x54,0x52,0x20, /* 00000000 "RSD PTR " */ + 0x43,0x49,0x4E,0x54,0x45,0x4C,0x20,0x02, /* 00000008 "CINTEL ." */ + 0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00, /* 00000010 "....$..." */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000018 "........" */ + 0xDC,0x00,0x00,0x00 /* 00000020 "...." */ +}; + +unsigned char RsdtCode[] = +{ + 0x52,0x53,0x44,0x54,0x28,0x00,0x00,0x00, /* 00000000 "RSDT(..." */ + 0x01,0x10,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 "..INTEL " */ + 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x01,0x00,0x00,0x00 /* 00000020 "... ...." */ +}; + +unsigned char XsdtCode[] = +{ + 0x58,0x53,0x44,0x54,0x2C,0x00,0x00,0x00, /* 00000000 "XSDT,..." */ + 0x01,0x06,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 "..INTEL " */ + 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x01,0x00,0x00,0x00, /* 00000020 "... ...." */ + 0x00,0x00,0x00,0x00 /* 00000028 "...." */ +}; + +unsigned char FadtCode[] = +{ + 0x46,0x41,0x43,0x50,0x0C,0x01,0x00,0x00, /* 00000000 "FACP...." */ + 0x05,0x64,0x49,0x4E,0x54,0x45,0x4C,0x20, /* 00000008 ".dINTEL " */ + 0x54,0x45,0x4D,0x50,0x4C,0x41,0x54,0x45, /* 00000010 "TEMPLATE" */ + 0x00,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x01,0x00,0x00,0x00, /* 00000020 "... ...." */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000028 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000030 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000038 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000040 "........" */ + 0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00, /* 00000048 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000050 "........" */ + 0x04,0x02,0x01,0x04,0x08,0x00,0x00,0x00, /* 00000058 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000060 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000068 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x01, /* 00000070 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000078 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, /* 00000080 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, /* 00000088 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x20,0x00,0x02, /* 00000090 "..... .." */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000098 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000A0 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x10,0x00,0x02, /* 000000A8 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000B0 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000B8 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00, /* 000000C0 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000C8 "........" */ + 0x01,0x20,0x00,0x03,0x01,0x00,0x00,0x00, /* 000000D0 ". ......" */ + 0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x01, /* 000000D8 ".....@.." */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000E0 "........" */ + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000E8 "........" */ + 0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x01, /* 000000F0 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000000F8 "........" */ + 0x01,0x08,0x00,0x01,0x00,0x00,0x00,0x00, /* 00000100 "........" */ + 0x00,0x00,0x00,0x00 /* 00000108 "...." */ +}; + +/* Fixed tables */ + +static unsigned char FacsCode[] = +{ + 0x46,0x41,0x43,0x53,0x40,0x00,0x00,0x00, /* 00000000 "FACS@..." */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000008 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000010 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000018 "........" */ + 0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000020 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000028 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000030 "........" */ + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 /* 00000038 "........" */ +}; + +static unsigned char DsdtCode[] = +{ + 0x44,0x53,0x44,0x54,0x67,0x00,0x00,0x00, /* 00000000 "DSDTg..." */ + 0x02,0x97,0x49,0x6E,0x74,0x65,0x6C,0x00, /* 00000008 "..Intel." */ + 0x54,0x65,0x6D,0x70,0x6C,0x61,0x74,0x65, /* 00000010 "Template" */ + 0x01,0x00,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */ + 0x15,0x11,0x13,0x20,0x14,0x42,0x04,0x4D, /* 00000020 "... .B.M" */ + 0x41,0x49,0x4E,0x01,0x70,0x73,0x0D,0x4D, /* 00000028 "AIN.ps.M" */ + 0x61,0x69,0x6E,0x2F,0x41,0x72,0x67,0x30, /* 00000030 "ain/Arg0" */ + 0x3A,0x20,0x00,0x68,0x00,0x5B,0x31,0xA4, /* 00000038 ": .h.[1." */ + 0x0D,0x4D,0x61,0x69,0x6E,0x20,0x73,0x75, /* 00000040 ".Main su" */ + 0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6C, /* 00000048 "ccessful" */ + 0x6C,0x79,0x20,0x63,0x6F,0x6D,0x70,0x6C, /* 00000050 "ly compl" */ + 0x65,0x74,0x65,0x64,0x20,0x65,0x78,0x65, /* 00000058 "eted exe" */ + 0x63,0x75,0x74,0x69,0x6F,0x6E,0x00 /* 00000060 "cution." */ +}; + + +/* Useful pointers */ + +ACPI_TABLE_RSDP *Rsdp = ACPI_CAST_PTR (ACPI_TABLE_RSDP, RsdpCode); +ACPI_TABLE_RSDT *Rsdt = ACPI_CAST_PTR (ACPI_TABLE_RSDT, RsdtCode); +ACPI_TABLE_XSDT *Xsdt = ACPI_CAST_PTR (ACPI_TABLE_XSDT, XsdtCode); +ACPI_TABLE_FADT *Fadt = ACPI_CAST_PTR (ACPI_TABLE_FADT, FadtCode); + + +/****************************************************************************** + * + * Build the various required ACPI tables: + * + * 1) Setup RSDP to point to the RSDT and XSDT + * 2) Setup RSDT/XSDT to point to the FADT + * 3) Setup FADT to point to the DSDT and FACS + * 4) Update checksums for all modified tables + * + *****************************************************************************/ + +void +ExInitializeAcpiTables ( + void) +{ + + /* Setup RSDP */ + + Rsdp->RsdtPhysicalAddress = (UINT32) ACPI_TO_INTEGER (RsdtCode); + Rsdp->XsdtPhysicalAddress = (UINT64) ACPI_TO_INTEGER (XsdtCode); + + /* RSDT and XSDT */ + + Rsdt->TableOffsetEntry[0] = (UINT32) ACPI_TO_INTEGER (FadtCode); + Xsdt->TableOffsetEntry[0] = (UINT64) ACPI_TO_INTEGER (FadtCode); + + /* FADT */ + + Fadt->Facs = 0; + Fadt->Dsdt = 0; + Fadt->XFacs = (UINT64) ACPI_TO_INTEGER (FacsCode); + Fadt->XDsdt = (UINT64) ACPI_TO_INTEGER (DsdtCode); + + /* Set new checksums for the modified tables */ + + Rsdp->Checksum = 0; + Rsdp->Checksum = (UINT8) -AcpiTbChecksum ( + (void *) RsdpCode, ACPI_RSDP_CHECKSUM_LENGTH); + + Rsdt->Header.Checksum = 0; + Rsdt->Header.Checksum = (UINT8) -AcpiTbChecksum ( + (void *) Rsdt, Rsdt->Header.Length); + + Xsdt->Header.Checksum = 0; + Xsdt->Header.Checksum = (UINT8) -AcpiTbChecksum ( + (void *) Xsdt, Xsdt->Header.Length); + + Fadt->Header.Checksum = 0; + Fadt->Header.Checksum = (UINT8) -AcpiTbChecksum ( + (void *) Fadt, Fadt->Header.Length); +} + + +/****************************************************************************** + * + * OSL support - return the address of the RSDP + * + *****************************************************************************/ + +ACPI_PHYSICAL_ADDRESS +AeLocalGetRootPointer ( + void) +{ + + return ((ACPI_PHYSICAL_ADDRESS) RsdpCode); +} + + +#ifdef DO_NOT_COMPILE_ACPI_TABLE_CODE +/****************************************************************************** + * + * ACPICA Example table source code + * + * This is the original source code for the tables above + * + *****************************************************************************/ + +/* RSDP */ + +[0008] Signature : "RSD PTR " +[0001] Checksum : 43 +[0006] Oem ID : "INTEL " +[0001] Revision : 02 +[0004] RSDT Address : 00000000 +[0004] Length : 00000024 +[0008] XSDT Address : 0000000000000000 +[0001] Extended Checksum : DC +[0003] Reserved : 000000 + + +/* RSDT */ + +[0004] Signature : "RSDT" [Root System Description Table] +[0004] Table Length : 00000044 +[0001] Revision : 01 +[0001] Checksum : B1 +[0006] Oem ID : "INTEL " +[0008] Oem Table ID : "TEMPLATE" +[0004] Oem Revision : 00000001 +[0004] Asl Compiler ID : "INTL" +[0004] Asl Compiler Revision : 20100528 + +[0004] ACPI Table Address 0 : 00000001 + + +/* XSDT */ + +[0004] Signature : "XSDT" [Extended System Description Table] +[0004] Table Length : 00000064 +[0001] Revision : 01 +[0001] Checksum : 8B +[0006] Oem ID : "INTEL " +[0008] Oem Table ID : "TEMPLATE" +[0004] Oem Revision : 00000001 +[0004] Asl Compiler ID : "INTL" +[0004] Asl Compiler Revision : 20100528 + +[0008] ACPI Table Address 0 : 0000000000000001 + + +/* FADT */ + +[0004] Signature : "FACP" [Fixed ACPI Description Table (FADT)] +[0004] Table Length : 0000010C +[0001] Revision : 05 +[0001] Checksum : 18 +[0006] Oem ID : "INTEL " +[0008] Oem Table ID : "TEMPLATE" +[0004] Oem Revision : 00000000 +[0004] Asl Compiler ID : "INTL" +[0004] Asl Compiler Revision : 20111123 + +[0004] FACS Address : 00000001 +[0004] DSDT Address : 00000001 +[0001] Model : 00 +[0001] PM Profile : 00 [Unspecified] +[0002] SCI Interrupt : 0000 +[0004] SMI Command Port : 00000000 +[0001] ACPI Enable Value : 00 +[0001] ACPI Disable Value : 00 +[0001] S4BIOS Command : 00 +[0001] P-State Control : 00 +[0004] PM1A Event Block Address : 00000001 +[0004] PM1B Event Block Address : 00000000 +[0004] PM1A Control Block Address : 00000001 +[0004] PM1B Control Block Address : 00000000 +[0004] PM2 Control Block Address : 00000001 +[0004] PM Timer Block Address : 00000001 +[0004] GPE0 Block Address : 00000001 +[0004] GPE1 Block Address : 00000000 +[0001] PM1 Event Block Length : 04 +[0001] PM1 Control Block Length : 02 +[0001] PM2 Control Block Length : 01 +[0001] PM Timer Block Length : 04 +[0001] GPE0 Block Length : 08 +[0001] GPE1 Block Length : 00 +[0001] GPE1 Base Offset : 00 +[0001] _CST Support : 00 +[0002] C2 Latency : 0000 +[0002] C3 Latency : 0000 +[0002] CPU Cache Size : 0000 +[0002] Cache Flush Stride : 0000 +[0001] Duty Cycle Offset : 00 +[0001] Duty Cycle Width : 00 +[0001] RTC Day Alarm Index : 00 +[0001] RTC Month Alarm Index : 00 +[0001] RTC Century Index : 00 +[0002] Boot Flags (decoded below) : 0000 + Legacy Devices Supported (V2) : 0 + 8042 Present on ports 60/64 (V2) : 0 + VGA Not Present (V4) : 0 + MSI Not Supported (V4) : 0 + PCIe ASPM Not Supported (V4) : 0 + CMOS RTC Not Present (V5) : 0 +[0001] Reserved : 00 +[0004] Flags (decoded below) : 00000000 + WBINVD instruction is operational (V1) : 0 + WBINVD flushes all caches (V1) : 0 + All CPUs support C1 (V1) : 0 + C2 works on MP system (V1) : 0 + Control Method Power Button (V1) : 0 + Control Method Sleep Button (V1) : 0 + RTC wake not in fixed reg space (V1) : 0 + RTC can wake system from S4 (V1) : 0 + 32-bit PM Timer (V1) : 0 + Docking Supported (V1) : 0 + Reset Register Supported (V2) : 0 + Sealed Case (V3) : 0 + Headless - No Video (V3) : 0 + Use native instr after SLP_TYPx (V3) : 0 + PCIEXP_WAK Bits Supported (V4) : 0 + Use Platform Timer (V4) : 0 + RTC_STS valid on S4 wake (V4) : 0 + Remote Power-on capable (V4) : 0 + Use APIC Cluster Model (V4) : 0 + Use APIC Physical Destination Mode (V4) : 0 + Hardware Reduced (V5) : 0 + Low Power S0 Idle (V5) : 0 + +[0012] Reset Register : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 08 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 01 [Byte Access:8] +[0008] Address : 0000000000000001 + +[0001] Value to cause reset : 00 +[0003] Reserved : 000000 +[0008] FACS Address : 0000000000000001 +[0008] DSDT Address : 0000000000000001 +[0012] PM1A Event Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 20 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 02 [Word Access:16] +[0008] Address : 0000000000000001 + +[0012] PM1B Event Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 00 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 00 [Undefined/Legacy] +[0008] Address : 0000000000000000 + +[0012] PM1A Control Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 10 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 02 [Word Access:16] +[0008] Address : 0000000000000001 + +[0012] PM1B Control Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 00 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 00 [Undefined/Legacy] +[0008] Address : 0000000000000000 + +[0012] PM2 Control Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 08 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 00 [Undefined/Legacy] +[0008] Address : 0000000000000001 + +[0012] PM Timer Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 20 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 03 [DWord Access:32] +[0008] Address : 0000000000000001 + +[0012] GPE0 Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 40 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 01 [Byte Access:8] +[0008] Address : 0000000000000001 + +[0012] GPE1 Block : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 00 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 00 [Undefined/Legacy] +[0008] Address : 0000000000000000 + + +[0012] Sleep Control Register : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 08 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 01 [Byte Access:8] +[0008] Address : 0000000000000000 + +[0012] Sleep Status Register : [Generic Address Structure] +[0001] Space ID : 01 [SystemIO] +[0001] Bit Width : 08 +[0001] Bit Offset : 00 +[0001] Encoded Access Width : 01 [Byte Access:8] +[0008] Address : 0000000000000000 + + +/* FACS */ + +[0004] Signature : "FACS" +[0004] Length : 00000040 +[0004] Hardware Signature : 00000000 +[0004] 32 Firmware Waking Vector : 00000000 +[0004] Global Lock : 00000000 +[0004] Flags (decoded below) : 00000000 + S4BIOS Support Present : 0 + 64-bit Wake Supported (V2) : 0 +[0008] 64 Firmware Waking Vector : 0000000000000000 +[0001] Version : 02 +[0003] Reserved : 000000 +[0004] OspmFlags (decoded below) : 00000000 + 64-bit Wake Env Required (V2) : 0 + + +/* DSDT - ASL code */ + +DefinitionBlock ("dsdt.aml", "DSDT", 2, "Intel", "Template", 0x00000001) +{ + Method (MAIN, 1, NotSerialized) + { + Store (Concatenate ("Main/Arg0: ", Arg0), Debug) + Return ("Main successfully completed execution") + } +} +#endif diff -Nru acpica-unix-20131115/tests/aapits/atcommon.h acpica-unix-20140114/tests/aapits/atcommon.h --- acpica-unix-20131115/tests/aapits/atcommon.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atcommon.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atexec.c acpica-unix-20140114/tests/aapits/atexec.c --- acpica-unix-20131115/tests/aapits/atexec.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atexec.c 2014-01-28 13:06:26.000000000 +0000 @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atfixedevent.c acpica-unix-20140114/tests/aapits/atfixedevent.c --- acpica-unix-20131115/tests/aapits/atfixedevent.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atfixedevent.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atfixedevent.h acpica-unix-20140114/tests/aapits/atfixedevent.h --- acpica-unix-20131115/tests/aapits/atfixedevent.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atfixedevent.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atgpe.c acpica-unix-20140114/tests/aapits/atgpe.c --- acpica-unix-20131115/tests/aapits/atgpe.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atgpe.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atgpe.h acpica-unix-20140114/tests/aapits/atgpe.h --- acpica-unix-20131115/tests/aapits/atgpe.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atgpe.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/athandlers.c acpica-unix-20140114/tests/aapits/athandlers.c --- acpica-unix-20131115/tests/aapits/athandlers.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/athandlers.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/athandlers.h acpica-unix-20140114/tests/aapits/athandlers.h --- acpica-unix-20131115/tests/aapits/athandlers.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/athandlers.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/athardware.c acpica-unix-20140114/tests/aapits/athardware.c --- acpica-unix-20131115/tests/aapits/athardware.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/athardware.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/athardware.h acpica-unix-20140114/tests/aapits/athardware.h --- acpica-unix-20131115/tests/aapits/athardware.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/athardware.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atinit.c acpica-unix-20140114/tests/aapits/atinit.c --- acpica-unix-20131115/tests/aapits/atinit.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atinit.c 2014-01-28 13:06:26.000000000 +0000 @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atinit.h acpica-unix-20140114/tests/aapits/atinit.h --- acpica-unix-20131115/tests/aapits/atinit.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atinit.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atmain.c acpica-unix-20140114/tests/aapits/atmain.c --- acpica-unix-20131115/tests/aapits/atmain.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atmain.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atmemory.c acpica-unix-20140114/tests/aapits/atmemory.c --- acpica-unix-20131115/tests/aapits/atmemory.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atmemory.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atmemory.h acpica-unix-20140114/tests/aapits/atmemory.h --- acpica-unix-20131115/tests/aapits/atmemory.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atmemory.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atnamespace.c acpica-unix-20140114/tests/aapits/atnamespace.c --- acpica-unix-20131115/tests/aapits/atnamespace.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atnamespace.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atnamespace.h acpica-unix-20140114/tests/aapits/atnamespace.h --- acpica-unix-20131115/tests/aapits/atnamespace.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atnamespace.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atosxfctrl.c acpica-unix-20140114/tests/aapits/atosxfctrl.c --- acpica-unix-20131115/tests/aapits/atosxfctrl.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atosxfctrl.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atosxfctrl.h acpica-unix-20140114/tests/aapits/atosxfctrl.h --- acpica-unix-20131115/tests/aapits/atosxfctrl.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atosxfctrl.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atosxfwrap.c acpica-unix-20140114/tests/aapits/atosxfwrap.c --- acpica-unix-20131115/tests/aapits/atosxfwrap.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atosxfwrap.c 2014-01-28 13:06:26.000000000 +0000 @@ -10,7 +10,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atosxfwrap.h acpica-unix-20140114/tests/aapits/atosxfwrap.h --- acpica-unix-20131115/tests/aapits/atosxfwrap.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atosxfwrap.h 2014-01-28 13:06:26.000000000 +0000 @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atresource.c acpica-unix-20140114/tests/aapits/atresource.c --- acpica-unix-20131115/tests/aapits/atresource.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atresource.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/atresource.h acpica-unix-20140114/tests/aapits/atresource.h --- acpica-unix-20131115/tests/aapits/atresource.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/atresource.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/attable.c acpica-unix-20140114/tests/aapits/attable.c --- acpica-unix-20131115/tests/aapits/attable.c 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/attable.c 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aapits/attable.h acpica-unix-20140114/tests/aapits/attable.h --- acpica-unix-20131115/tests/aapits/attable.h 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aapits/attable.h 2014-01-28 13:06:26.000000000 +0000 @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. * All rights reserved. * * 2. License diff -Nru acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl --- acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl --- acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl --- acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl --- acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl --- acpica-unix-20131115/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/MAIN.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/arithmetic.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/arithmetic.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/arithmetic.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/arithmetic.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/bfield.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/bfield.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/bfield.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/bfield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/constant.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/constant.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/constant.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/constant.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/control.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/control.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/control.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/control.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/descriptor.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/descriptor.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/descriptor.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/descriptor.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/extern.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/extern.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/extern.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/extern.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/local.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/local.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/local.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/local.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/logic.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/logic.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/logic.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/logic.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/manipulation.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/manipulation.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/manipulation.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/manipulation.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/misc.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/misc.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/misc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/misc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/name.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/name.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/name.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/name.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/reference.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/reference.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/reference.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/reference.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/region.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/region.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/region.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/region.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/synchronization.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/synchronization.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/synchronization.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/synchronization.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/compilation/collection/table.asl acpica-unix-20140114/tests/aslts/src/compilation/collection/table.asl --- acpica-unix-20131115/tests/aslts/src/compilation/collection/table.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/compilation/collection/table.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_5UP.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_5UP.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_5UP.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_5UP.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_6UP.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_6UP.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_6UP.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_6UP.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_7UP.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_7UP.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/DECL_7UP.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/DECL_7UP.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/MT_DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/MT_DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/MT_DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/MT_DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/common.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/common.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/common.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/common.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/ehandle.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/ehandle.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/ehandle.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/ehandle.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/mt_runpoint.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/mt_runpoint.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/mt_runpoint.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/mt_runpoint.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/runmode.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/runmode.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/runmode.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/runmode.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -265,7 +265,7 @@ Name(y216, 0) // exception AE_NOT_FOUND on CreateField under specific conditions Name(y217, 0) // Dynamic OpRegion _REG method execution problem Name(y220, 0) // Inconsistent "Access is available/unavailable" _REG method calls -Name(y221, 0) // Alternating access to OpRegions covering different ranges +Name(y221, 1) // Alternating access to OpRegions covering different ranges Name(y222, 0) // Alternating access to OpRegions of different Address Spaces Name(y223, 1) // DataTableRegion with the non-constant *Strings works since ACPICA release 20071211 Name(y224, 0) // AcpiExec is unable to emulate access to IndexField Objects diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/cntl/runpoint.asl acpica-unix-20140114/tests/aslts/src/runtime/cntl/runpoint.asl --- acpica-unix-20131115/tests/aslts/src/runtime/cntl/runpoint.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/cntl/runpoint.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl 2013-12-04 12:26:19.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/misc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/misc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/misc/misc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/misc/misc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/scope.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/scope.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/namespace/scope.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/namespace/scope.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -561,10 +561,10 @@ Return (1) } - if (LEqual(arg4, 0)) { // Increment - Increment(Local1) + if (LEqual(arg4, 0)) { // Increment + Increment(Local1) } elseif (LEqual(arg4, 1)) { // Decrement - Decrement(Local1) + Decrement(Local1) } else { // Unexpected Kind of Op (0 - Increment, 1 - Decrement) err(Concatenate(arg0, terr), z125, 25, 0, 0, arg4, 0) @@ -572,9 +572,20 @@ } if (arg5) { - // Exception is expected - if (LNot(CH06(arg0, 26, 0xff))) { - if (STCS) {m000(2, 0x100, arg2, arg3)} + if (LAnd(SLCK, LAnd(LEqual(ToInteger(arg3), 0), + LEqual(ToInteger(arg2), 1)))) { + // In slack mode, [Uninitialized] object + // will be converted to Integer 0, thus no + // exception caused by implicit source + // conversion. + if (CH03(arg0, z125, 26, arg3, arg2)) { + if (STCS) {m000(2, 0x100, arg2, arg3)} + } + } else { + // Exception is expected + if (LNot(CH06(arg0, 26, 0xff))) { + if (STCS) {m000(2, 0x100, arg2, arg3)} + } } } elseif (CH03(arg0, z125, 27, arg3, arg2)) { // Processing caused unexpected exception @@ -621,7 +632,7 @@ Return (1) } - if (LEqual(arg4, 0)) { // Increment + if (LEqual(arg4, 0)) { // Increment Store(m100(Local1), Local2) } elseif (LEqual(arg4, 1)) { // Decrement Store(m101(Local1), Local2) @@ -632,9 +643,20 @@ } if (arg5) { - // Exception is expected - if (LNot(CH06(arg0, 30, 0xff))) { - if (STCS) {m000(2, 0x100, arg2, arg3)} + if (LAnd(SLCK, LAnd(LEqual(ToInteger(arg3), 0), + LEqual(ToInteger(arg2), 1)))) { + // In slack mode, [Uninitialized] object + // will be converted to Integer 0, thus no + // exception caused by implicit source + // conversion. + if (CH03(arg0, z125, 30, arg3, arg2)) { + if (STCS) {m000(2, 0x100, arg2, arg3)} + } + } else { + // Exception is expected + if (LNot(CH06(arg0, 30, 0xff))) { + if (STCS) {m000(2, 0x100, arg2, arg3)} + } } } elseif (CH03(arg0, z125, 31, arg3, arg2)) { // Processing caused unexpected exception diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/constants.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/constants.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/constant/constants.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/constant/constants.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -753,11 +753,10 @@ Store(m00b(), i000) if (tmp0) { CH03("", z138, 0x051, 0, 0) - if (y263) { - Store(0xabcd0008, Local0) - } else { - Store(Ones, Local0) - } + // Oct 2013, David Box + // Implicit return for logical opertions (LNot, LEqual, ...) + // returns logical value of the operation + Store(Ones, Local0) if (LNotEqual(i000, Local0)) { err("", z138, 0x052, 0, 0, i000, Local0) } @@ -774,11 +773,10 @@ Store(m00c(), i000) if (tmp0) { CH03("", z138, 0x055, 0, 0) - if (y263) { - Store(0xabcd0008, Local0) - } else { - Store(Zero, Local0) - } + // Oct 2013, David Box + // Implicit return for logical opertions (LNot, LEqual, ...) + // returns logical value of the operation + Store(Zero, Local0) if (LNotEqual(i000, Local0)) { err("", z138, 0x056, 0, 0, i000, Local0) } @@ -808,11 +806,10 @@ Store(m00e(), i000) if (tmp0) { CH03("", z138, 0x05d, 0, 0) - if (y263) { - Store(0xabcd0008, Local0) - } else { - Store(Ones, Local0) - } + // Oct 2013, David Box + // Implicit return for logical opertions (LNot, LEqual, ...) + // returns logical value of the operation + Store(Ones, Local0) if (LNotEqual(i000, Local0)) { err("", z138, 0x05e, 0, 0, i000, Local0) } @@ -829,11 +826,10 @@ Store(m00f(), i000) if (tmp0) { CH03("", z138, 0x061, 0, 0) - if (y263) { - Store(0xabcd0008, Local0) - } else { - Store(Zero, Local0) - } + // Oct 2013, David Box + // Implicit return for logical opertions (LNot, LEqual, ...) + // returns logical value of the operation + Store(Zero, Local0) if (LNotEqual(i000, Local0)) { err("", z138, 0x062, 0, 0, i000, Local0) } diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/return.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/return.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/Return/return.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/Return/return.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -128,7 +128,7 @@ m001() if (Store(0xaaaa0007, i001)) { Increment(i002) - Store(Add(0xaaaa0008, 0), Local5) + Store(Add(0xaaaa0008, 0), Local5) Store(Subtract(0xaaaa0009, 0), Local5) if (LEqual(arg0, 0)) { return (0x55550000) diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl0.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/ctl2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/ctl2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch3.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch3.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch3.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch3.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch4.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch4.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch4.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch4.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch5.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch5.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch5.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch5.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch6.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch6.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/switch6.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/switch6.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/timing.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/timing.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/timing.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/timing.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -33,7 +33,7 @@ */ Name(z006, 6) - +Name(MSLP, 2000) // Max sleep (ms) defined in acconfig.h, Oct 2013 // Verifying 1-parameter, 0-result operator // @@ -57,6 +57,13 @@ switch (arg4) { case (0) { + if (LLess(MSLP, Local0)) { + // Exceeding max allowable sleep time + Store("m0c8: Note, argument exceeds max defined time for Sleep.", + Debug); + Break + } + Store(Timer, Local1) Sleep(Local0) Store(Timer, Local2) diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/while.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/while.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/control/while.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/control/while.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/io.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/io.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/io.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/io.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/register.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/register.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/register.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/register.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/local.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/local.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/local/local.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/local/local.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/logical.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/logical.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/logic/logical.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/logic/logical.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/store.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/store.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/store.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/store.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/function.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/function.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/function.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/function.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/method.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/method.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/method.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/method.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/name.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/name.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/name.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/name.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/package.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/package.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/name/package.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/name/package.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref00.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref00.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref00.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref00.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref01.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref01.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref01.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref01.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref02.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref02.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref02.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref02.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref03.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref03.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref03.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref03.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref04.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref04.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref04.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref04.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref05.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref05.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref05.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref05.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref06.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref06.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref06.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref06.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref07.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref07.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref07.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref07.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref50.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref50.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref50.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref50.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref70.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref70.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref70.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref70.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref71.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref71.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/reference/ref71.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/reference/ref71.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/bankfield.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/bankfield.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/bankfield.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/bankfield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/dtregions.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/dtregions.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/dtregions.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/dtregions.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/indexfield.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/indexfield.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/indexfield.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/indexfield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/opregions.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/opregions.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/opregions.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/opregions.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -1016,6 +1016,82 @@ m000(arg0, offs, lens, 45) } +// Overlapping Operation Regions algorithm test +// Test the 3 conditional cases of overlap +// Test done only in SystemMemory +Method(m707, 1, Serialized) +{ + OperationRegion(RGN0, SystemMemory, 0x100, 0x8) + OperationRegion(RGN1, SystemMemory, 0xFB, 0x8) + OperationRegion(RGN2, SystemMemory, 0x105, 0x8) + OperationRegion(RGN3, SystemMemory, 0xF9, 0x16) + OperationRegion(RGN4, SystemMemory, 0xF9, 0x16) + + // Starting Field + Field (RGN0, ByteAcc, NoLock, Preserve) { + Offset(0x1), FU00, 0x30 + } + + // Overlap start of RGN0 + Field (RGN1, ByteAcc, NoLock, Preserve) { + Offset(0x2), FU10, 0x30 + } + + // Overlap end of RGN0 + Field (RGN2, ByteAcc, NoLock, Preserve) { + FU20, 0x30 + } + + // Overlap both start of RGN1 and end of RGN2 + Field (RGN3, ByteAcc, NoLock, Preserve) { + FU30, 0x30, + Offset(0x8), FU31, 0x10, + Offset(0xC), FU32, 0x10, + Offset(0x10), FU33, 0x30 + } + + // Single Field spanning RGN3 area + Field (RGN4, ByteAcc, NoLock, Preserve) { + FU40, 0xB0 + } + + Name(b000, Buffer(0x6){}) + Name(b001, Buffer(0x2){}) + + // Starting region write + m70d(1, b000) + Store(b000, FU00) + + // New region overlapping the left + m70d(2, b000) + Store(b000, FU10) + + // New region overlapping the right + m70d(3, b000) + Store(b000, FU20) + + // New region overlapping left and right with writes + // at various locations + m70d(4, b000) + Store(b000, FU30) + + m70d(5, b001) + Store(b001, FU31) + + m70d(6, b001) + Store(b001, FU32) + + m70d(7, b000) + Store(b000, FU33) + + Store(FU40, Local0) + Store(Buffer(){4,4,4,4,4,4,2,2,5,5,1,1,6,6,3,3,7,7,7,7,7,7}, Local1) + + if (LNotEqual(Local0, Local1)) { + err(arg0, z141, 43, 0, 0, Local0, Local1) + } +} + Method(ORC0,, Serialized) { Name(ts, "ORC0") @@ -1064,4 +1140,8 @@ // Non-Integer OpRegion arguments SRMT("m706") m706(ts) + + // Overlapping OpRegions algorithm test + SRMT("m707") + m707(ts) } diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/regionfield.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/regionfield.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/region/regionfield.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/region/regionfield.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/event.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/event.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/event.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/event.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/load.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/load.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/load.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/load.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/loadtable.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/loadtable.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/loadtable.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/loadtable.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/oem1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/oem1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/oem1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/oem1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/unload.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/unload.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/functional/table/unload.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/functional/table/unload.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/common.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/common.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/common.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/common.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/example0.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/example0.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/example0.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/example0.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/service.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/service.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/service.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/service.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/tests.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/tests.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/mt/mutex/tests.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/mt/mutex/tests.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl --- acpica-unix-20131115/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/TCI/tcicmd.asl acpica-unix-20140114/tests/aslts/src/runtime/common/TCI/tcicmd.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/TCI/tcicmd.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/TCI/tcicmd.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/oDECL.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/oDECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/oDECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/oDECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/oproc.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/oproc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/oproc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/oproc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/otest.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/otest.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/otest.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/otest.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rDECL.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rDECL.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rDECL.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rDECL.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rproc.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rproc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rproc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rproc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rtest.asl acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rtest.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/conversion/rtest.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/conversion/rtest.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/data.asl acpica-unix-20140114/tests/aslts/src/runtime/common/data.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/data.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/data.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/dataproc.asl acpica-unix-20140114/tests/aslts/src/runtime/common/dataproc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/dataproc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/dataproc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/datastproc.asl acpica-unix-20140114/tests/aslts/src/runtime/common/datastproc.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/datastproc.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/datastproc.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/mx_objects.asl acpica-unix-20140114/tests/aslts/src/runtime/common/mx_objects.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/mx_objects.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/mx_objects.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff -Nru acpica-unix-20131115/tests/aslts/src/runtime/common/operations.asl acpica-unix-20140114/tests/aslts/src/runtime/common/operations.asl --- acpica-unix-20131115/tests/aslts/src/runtime/common/operations.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/aslts/src/runtime/common/operations.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, Binary files /tmp/Ij2Km4SsG3/acpica-unix-20131115/tests/misc/grammar.aml and /tmp/opNc3_M4pD/acpica-unix-20140114/tests/misc/grammar.aml differ diff -Nru acpica-unix-20131115/tests/misc/grammar.asl acpica-unix-20140114/tests/misc/grammar.asl --- acpica-unix-20131115/tests/misc/grammar.asl 2013-12-04 12:26:20.000000000 +0000 +++ acpica-unix-20140114/tests/misc/grammar.asl 2014-01-28 13:06:26.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2013, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification,