From d380d20814097d1800c29db02464ecb7dd7aedf7 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Mar 02 2015 23:40:30 +0000 Subject: Imported Upstream version 20150204 --- diff --git a/changes.txt b/changes.txt index 025e85c..0469af0 100755 --- a/changes.txt +++ b/changes.txt @@ -1,4 +1,44 @@ ---------------------------------------- +04 February 2015. Summary of changes for version 20150204: + +This release is available at https://acpica.org/downloads + +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. + +Events: Introduce ACPI_GPE_DISPATCH_RAW_HANDLER to fix GPE storm issues. +A raw gpe handling mechanism was created to allow better handling of GPE +storms that aren't easily managed by the normal handler. The raw handler +allows disabling/renabling of the the GPE so that interrupt storms can be +avoided in cases where events cannot be timely serviced. In this scenario, +handlers should use the AcpiSetGpe() API to disable/enable the GPE. This API +will leave the reference counts undisturbed, thereby preventing unintentional +clearing of the GPE when the intent in only to temporarily disable it. Raw +handlers allow enabling and disabling of a GPE by removing GPE register +locking. As such, raw handlers much provide their own locks while using +GPE API's to protect access to GPE data structures. +Lv Zheng + +Events: Always modify GPE registers under the GPE lock. +Applies GPE lock around AcpiFinishGpe() to protect access to GPE register +values. Reported as bug by joe.liu@apple.com. + +Unix makefiles: Separate option to disable optimizations and _FORTIFY_SOURCE. +This change removes the _FORTIFY_SOURCE flag from the NOOPT disable option and +creates a separate flag (NOFORTIFY) for this purpose. Some toolchains may +define _FORTIFY_SOURCE which leads redefined errors when building ACPICA. This +allows disabling the option without also having to disable optimazations. +David Box + + Current Release: + Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total + Debug Version: 199.2K Code, 82.4K Data, 281.6K Total + +---------------------------------------- 07 November 2014. Summary of changes for version 20141107: This release is available at https://acpica.org/downloads diff --git a/generate/unix/Makefile.config b/generate/unix/Makefile.config index dd7fd75..9d8cb68 100644 --- a/generate/unix/Makefile.config +++ b/generate/unix/Makefile.config @@ -140,7 +140,15 @@ OPT_CFLAGS ?= $(CWARNINGFLAGS) # some compilers such as gcc 4.4 # ifneq ($(NOOPT),TRUE) -OPT_CFLAGS += -O2 -D_FORTIFY_SOURCE=2 +OPT_CFLAGS += -O2 +endif + +# +# Optionally disable fortify source. This option can cause +# compile errors in toolchains where it is already defined. +# +ifneq ($(NOFORTIFY),TRUE) +OPT_CFLAGS += -D_FORTIFY_SOURCE=2 endif CFLAGS += \ diff --git a/source/common/acgetline.c b/source/common/acgetline.c index c361c2a..5daa95a 100644 --- a/source/common/acgetline.c +++ b/source/common/acgetline.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/adfile.c b/source/common/adfile.c index 41c27ee..69f68ca 100644 --- a/source/common/adfile.c +++ b/source/common/adfile.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/adisasm.c b/source/common/adisasm.c index f585fe5..be5474a 100644 --- a/source/common/adisasm.c +++ b/source/common/adisasm.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -357,8 +357,12 @@ AdAmlDisassemble ( AcpiDmDumpDataTable (Table); fprintf (stderr, "Acpi Data Table [%4.4s] decoded\n", Table->Signature); - fprintf (stderr, "Formatted output: %s - %u bytes\n", - DisasmFilename, CmGetFileSize (File)); + + if (File) + { + fprintf (stderr, "Formatted output: %s - %u bytes\n", + DisasmFilename, CmGetFileSize (File)); + } } else { @@ -376,8 +380,11 @@ AdAmlDisassemble ( { AcpiOsPrintf ("/**** Before second load\n"); - NsSetupNamespaceListing (File); - NsDisplayNamespace (); + if (File) + { + NsSetupNamespaceListing (File); + NsDisplayNamespace (); + } AcpiOsPrintf ("*****/\n"); } @@ -457,8 +464,11 @@ AdAmlDisassemble ( if (AslCompilerdebug) { AcpiOsPrintf ("/**** After second load and resource conversion\n"); - NsSetupNamespaceListing (File); - NsDisplayNamespace (); + if (File) + { + NsSetupNamespaceListing (File); + NsDisplayNamespace (); + } AcpiOsPrintf ("*****/\n"); AcpiDmDumpTree (AcpiGbl_ParseOpRoot); @@ -487,8 +497,11 @@ AdAmlDisassemble ( AcpiDmDumpDataTable (Table); fprintf (stderr, "Disassembly completed\n"); - fprintf (stderr, "ASL Output: %s - %u bytes\n", - DisasmFilename, CmGetFileSize (File)); + if (File) + { + fprintf (stderr, "ASL Output: %s - %u bytes\n", + DisasmFilename, CmGetFileSize (File)); + } if (Gbl_MapfileFlag) { @@ -507,7 +520,7 @@ Cleanup: ACPI_FREE (Table); } - if (OutToFile && File) + if (File) { if (AslCompilerdebug) /* Display final namespace, with transforms */ { diff --git a/source/common/adwalk.c b/source/common/adwalk.c index 81b5f4a..2703675 100644 --- a/source/common/adwalk.c +++ b/source/common/adwalk.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/ahids.c b/source/common/ahids.c index dc15f35..f2f1786 100644 --- a/source/common/ahids.c +++ b/source/common/ahids.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/ahpredef.c b/source/common/ahpredef.c index 893ea1c..72e518a 100644 --- a/source/common/ahpredef.c +++ b/source/common/ahpredef.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/ahuuids.c b/source/common/ahuuids.c index e0b05fa..929e3d6 100644 --- a/source/common/ahuuids.c +++ b/source/common/ahuuids.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/cmfsize.c b/source/common/cmfsize.c index 904d7d8..cc100b4 100644 --- a/source/common/cmfsize.c +++ b/source/common/cmfsize.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/dmextern.c b/source/common/dmextern.c index 37c3a65..35430cb 100644 --- a/source/common/dmextern.c +++ b/source/common/dmextern.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/dmrestag.c b/source/common/dmrestag.c index 5589d1f..689240a 100644 --- a/source/common/dmrestag.c +++ b/source/common/dmrestag.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/dmtable.c b/source/common/dmtable.c index fc8cbc2..5092839 100644 --- a/source/common/dmtable.c +++ b/source/common/dmtable.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/dmtbdump.c b/source/common/dmtbdump.c index ac46001..125e113 100644 --- a/source/common/dmtbdump.c +++ b/source/common/dmtbdump.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/dmtbinfo.c b/source/common/dmtbinfo.c index c7a247e..3c00a9a 100644 --- a/source/common/dmtbinfo.c +++ b/source/common/dmtbinfo.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/common/getopt.c b/source/common/getopt.c index 5ae1e0a..276a83c 100644 --- a/source/common/getopt.c +++ b/source/common/getopt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslanalyze.c b/source/compiler/aslanalyze.c index 94282a0..705cccf 100644 --- a/source/compiler/aslanalyze.c +++ b/source/compiler/aslanalyze.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslascii.c b/source/compiler/aslascii.c index 3fdf1ac..dfb28f2 100644 --- a/source/compiler/aslascii.c +++ b/source/compiler/aslascii.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslbtypes.c b/source/compiler/aslbtypes.c index 288678a..15c4ecd 100644 --- a/source/compiler/aslbtypes.c +++ b/source/compiler/aslbtypes.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslcodegen.c b/source/compiler/aslcodegen.c index a6a866e..5bb79c8 100644 --- a/source/compiler/aslcodegen.c +++ b/source/compiler/aslcodegen.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslcompile.c b/source/compiler/aslcompile.c index 432ec8b..47ef107 100644 --- a/source/compiler/aslcompile.c +++ b/source/compiler/aslcompile.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -118,10 +118,9 @@ CmDoCompile ( AslCompilerparse(); UtEndEvent (Event); - /* Check for parse errors */ + /* Check for parser-detected syntax errors */ - Status = AslCheckForErrorExit (); - if (ACPI_FAILURE (Status)) + if (Gbl_SyntaxError) { fprintf (stderr, "Compiler aborting due to parser-detected syntax error(s)\n"); LsDumpParseTree (); diff --git a/source/compiler/aslcompiler.h b/source/compiler/aslcompiler.h index 72d4699..38b2f23 100644 --- a/source/compiler/aslcompiler.h +++ b/source/compiler/aslcompiler.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslcompiler.l b/source/compiler/aslcompiler.l index c26408f..9030003 100644 --- a/source/compiler/aslcompiler.l +++ b/source/compiler/aslcompiler.l @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asldefine.h b/source/compiler/asldefine.h index 2c13196..f639ecc 100644 --- a/source/compiler/asldefine.h +++ b/source/compiler/asldefine.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslerror.c b/source/compiler/aslerror.c index fee96ec..75c6d75 100644 --- a/source/compiler/aslerror.c +++ b/source/compiler/aslerror.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -918,6 +918,8 @@ AslCompilererror ( const char *CompilerMessage) { + Gbl_SyntaxError++; + AslCommonError (ASL_ERROR, ASL_MSG_SYNTAX, Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, Gbl_CurrentLineOffset, Gbl_CurrentColumn, Gbl_Files[ASL_FILE_INPUT].Filename, diff --git a/source/compiler/aslfileio.c b/source/compiler/aslfileio.c index 6bde708..c7d398d 100644 --- a/source/compiler/aslfileio.c +++ b/source/compiler/aslfileio.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -68,8 +68,8 @@ FlFileError ( UINT8 ErrorId) { - sprintf (MsgBuffer, "\"%s\" (%s)", Gbl_Files[FileId].Filename, - strerror (errno)); + sprintf (MsgBuffer, "\"%s\" (%s) - %s", Gbl_Files[FileId].Filename, + Gbl_Files[FileId].Description, strerror (errno)); AslCommonError (ASL_ERROR, ErrorId, 0, 0, 0, 0, NULL, MsgBuffer); } @@ -98,6 +98,9 @@ FlOpenFile ( FILE *File; + Gbl_Files[FileId].Filename = Filename; + Gbl_Files[FileId].Handle = NULL; + File = fopen (Filename, Mode); if (!File) { @@ -105,8 +108,7 @@ FlOpenFile ( AslAbort (); } - Gbl_Files[FileId].Filename = Filename; - Gbl_Files[FileId].Handle = File; + Gbl_Files[FileId].Handle = File; } diff --git a/source/compiler/aslfiles.c b/source/compiler/aslfiles.c index 722e0ee..de8e1ca 100644 --- a/source/compiler/aslfiles.c +++ b/source/compiler/aslfiles.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -485,6 +485,8 @@ FlOpenAmlOutputFile ( 0, 0, 0, 0, NULL, NULL); return (AE_ERROR); } + + Gbl_Files[ASL_FILE_AML_OUTPUT].Filename = Filename; } /* Open the output AML file in binary mode */ @@ -563,9 +565,14 @@ FlOpenMiscOutputFiles ( if (!Gbl_Files[ASL_FILE_DEBUG_OUTPUT].Handle) { - AslCommonError (ASL_ERROR, ASL_MSG_DEBUG_FILENAME, - 0, 0, 0, 0, NULL, NULL); - return (AE_ERROR); + /* + * A problem with freopen is that on error, + * we no longer have stderr. + */ + Gbl_DebugFlag = FALSE; + memcpy (stderr, stdout, sizeof (FILE)); + FlFileError (ASL_FILE_DEBUG_OUTPUT, ASL_MSG_DEBUG_FILENAME); + AslAbort (); } AslCompilerSignon (ASL_FILE_DEBUG_OUTPUT); @@ -758,6 +765,26 @@ FlOpenMiscOutputFiles ( AslCompilerFileHeader (ASL_FILE_NAMESPACE_OUTPUT); } + /* Create/Open a map file if requested */ + + if (Gbl_MapfileFlag) + { + Filename = FlGenerateFilename (FilenamePrefix, FILE_SUFFIX_MAP); + if (!Filename) + { + AslCommonError (ASL_ERROR, ASL_MSG_LISTING_FILENAME, + 0, 0, 0, 0, NULL, NULL); + return (AE_ERROR); + } + + /* Open the hex file, text mode (closed at compiler exit) */ + + FlOpenFile (ASL_FILE_MAP_OUTPUT, Filename, "w+t"); + + AslCompilerSignon (ASL_FILE_MAP_OUTPUT); + AslCompilerFileHeader (ASL_FILE_MAP_OUTPUT); + } + return (AE_OK); } diff --git a/source/compiler/aslfold.c b/source/compiler/aslfold.c index 5799975..d1020bc 100644 --- a/source/compiler/aslfold.c +++ b/source/compiler/aslfold.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslglobal.h b/source/compiler/aslglobal.h index a3cbb20..c61b8ff 100644 --- a/source/compiler/aslglobal.h +++ b/source/compiler/aslglobal.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -127,6 +127,7 @@ ASL_EXTERN UINT32 ASL_INIT_GLOBAL (Gbl_PreviousLineNumber, 0); ASL_EXTERN UINT32 ASL_INIT_GLOBAL (Gbl_CurrentLineNumber, 1); ASL_EXTERN UINT32 ASL_INIT_GLOBAL (Gbl_LogicalLineNumber, 1); ASL_EXTERN UINT32 ASL_INIT_GLOBAL (Gbl_CurrentLineOffset, 0); +ASL_EXTERN UINT8 ASL_INIT_GLOBAL (Gbl_SyntaxError, 0); /* Exception reporting */ diff --git a/source/compiler/aslhex.c b/source/compiler/aslhex.c index 38766a4..a255daa 100644 --- a/source/compiler/aslhex.c +++ b/source/compiler/aslhex.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asllength.c b/source/compiler/asllength.c index 13af96a..8e876c7 100644 --- a/source/compiler/asllength.c +++ b/source/compiler/asllength.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asllisting.c b/source/compiler/asllisting.c index a29aeae..8e10750 100644 --- a/source/compiler/asllisting.c +++ b/source/compiler/asllisting.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asllistsup.c b/source/compiler/asllistsup.c index 224a29b..21ffb74 100644 --- a/source/compiler/asllistsup.c +++ b/source/compiler/asllistsup.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslload.c b/source/compiler/aslload.c index 075781a..0f68e0c 100644 --- a/source/compiler/aslload.c +++ b/source/compiler/aslload.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asllookup.c b/source/compiler/asllookup.c index 67c037e..6114822 100644 --- a/source/compiler/asllookup.c +++ b/source/compiler/asllookup.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmain.c b/source/compiler/aslmain.c index 9738fb5..4b0848b 100644 --- a/source/compiler/aslmain.c +++ b/source/compiler/aslmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmap.c b/source/compiler/aslmap.c index 3e9f613..61873d7 100644 --- a/source/compiler/aslmap.c +++ b/source/compiler/aslmap.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmapenter.c b/source/compiler/aslmapenter.c index a97c555..ce726c4 100644 --- a/source/compiler/aslmapenter.c +++ b/source/compiler/aslmapenter.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmapoutput.c b/source/compiler/aslmapoutput.c index 404c843..c8d8c68 100644 --- a/source/compiler/aslmapoutput.c +++ b/source/compiler/aslmapoutput.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -116,7 +116,7 @@ const char *PolarityDecode[] = * RETURN: None * * DESCRIPTION: External interface. - * Create and open the mapfile and emit all of the collected + * Map file has already been opened. Emit all of the collected * hardware mapping information. Includes: GPIO information, * Serial information, and a dump of the entire ACPI device tree. * @@ -126,8 +126,6 @@ void MpEmitMappingInfo ( void) { - char *NewFilename; - /* Mapfile option enabled? */ @@ -136,22 +134,6 @@ MpEmitMappingInfo ( return; } - /* Create/Open a map file */ - - NewFilename = FlGenerateFilename (Gbl_OutputFilenamePrefix, - FILE_SUFFIX_MAP); - if (!NewFilename) - { - AslCommonError (ASL_ERROR, ASL_MSG_LISTING_FILENAME, - 0, 0, 0, 0, NULL, NULL); - } - - /* Open the hex file, text mode (closed at compiler exit) */ - - FlOpenFile (ASL_FILE_MAP_OUTPUT, NewFilename, "w+t"); - AslCompilerSignon (ASL_FILE_MAP_OUTPUT); - AslCompilerFileHeader (ASL_FILE_MAP_OUTPUT); - if (!Gbl_GpioList) { FlPrintFile (ASL_FILE_MAP_OUTPUT, @@ -630,9 +612,6 @@ MpNamespaceXrefBegin ( if (Op->Asl.Node == Info->TargetNode) { - DevicePathname = AcpiNsGetExternalPathname ( - Info->TargetNode); - while (ParentOp && (!ParentOp->Asl.Node)) { ParentOp = ParentOp->Asl.Parent; @@ -654,6 +633,8 @@ MpNamespaceXrefBegin ( DevicePathname, HidString); Info->References++; + + ACPI_FREE (DevicePathname); } } diff --git a/source/compiler/aslmaputils.c b/source/compiler/aslmaputils.c index 10a6aea..2920d85 100644 --- a/source/compiler/aslmaputils.c +++ b/source/compiler/aslmaputils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmessages.c b/source/compiler/aslmessages.c index 30b479e..1f7a3b0 100644 --- a/source/compiler/aslmessages.c +++ b/source/compiler/aslmessages.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmessages.h b/source/compiler/aslmessages.h index ba0c22b..7a04a63 100644 --- a/source/compiler/aslmessages.h +++ b/source/compiler/aslmessages.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslmethod.c b/source/compiler/aslmethod.c index 0a5cee2..6ed0f62 100644 --- a/source/compiler/aslmethod.c +++ b/source/compiler/aslmethod.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslnamesp.c b/source/compiler/aslnamesp.c index ede0ff9..c35ebfd 100644 --- a/source/compiler/aslnamesp.c +++ b/source/compiler/aslnamesp.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asloffset.c b/source/compiler/asloffset.c index 53a6bf4..baf436e 100644 --- a/source/compiler/asloffset.c +++ b/source/compiler/asloffset.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslopcodes.c b/source/compiler/aslopcodes.c index c14ff15..0a22b79 100644 --- a/source/compiler/aslopcodes.c +++ b/source/compiler/aslopcodes.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asloperands.c b/source/compiler/asloperands.c index b6cf4a4..2670670 100644 --- a/source/compiler/asloperands.c +++ b/source/compiler/asloperands.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslopt.c b/source/compiler/aslopt.c index 1e9b55b..77b185e 100644 --- a/source/compiler/aslopt.c +++ b/source/compiler/aslopt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asloptions.c b/source/compiler/asloptions.c index f5a1d86..514a3ee 100644 --- a/source/compiler/asloptions.c +++ b/source/compiler/asloptions.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslparser.y b/source/compiler/aslparser.y index 827d438..cf09ddf 100644 --- a/source/compiler/aslparser.y +++ b/source/compiler/aslparser.y @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslpredef.c b/source/compiler/aslpredef.c index 33f6be9..268549c 100644 --- a/source/compiler/aslpredef.c +++ b/source/compiler/aslpredef.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslprepkg.c b/source/compiler/aslprepkg.c index f6fed53..037329a 100644 --- a/source/compiler/aslprepkg.c +++ b/source/compiler/aslprepkg.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslprintf.c b/source/compiler/aslprintf.c index d85abe2..9acc94b 100644 --- a/source/compiler/aslprintf.c +++ b/source/compiler/aslprintf.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslprune.c b/source/compiler/aslprune.c index b80ee15..3cf47da 100644 --- a/source/compiler/aslprune.c +++ b/source/compiler/aslprune.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslresource.c b/source/compiler/aslresource.c index 7b31e13..1b96a36 100644 --- a/source/compiler/aslresource.c +++ b/source/compiler/aslresource.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype1.c b/source/compiler/aslrestype1.c index 3731442..92c8730 100644 --- a/source/compiler/aslrestype1.c +++ b/source/compiler/aslrestype1.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype1i.c b/source/compiler/aslrestype1i.c index ca4771e..7acdbbc 100644 --- a/source/compiler/aslrestype1i.c +++ b/source/compiler/aslrestype1i.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2.c b/source/compiler/aslrestype2.c index ed848c6..45bbe23 100644 --- a/source/compiler/aslrestype2.c +++ b/source/compiler/aslrestype2.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2d.c b/source/compiler/aslrestype2d.c index edce9c8..c814f8c 100644 --- a/source/compiler/aslrestype2d.c +++ b/source/compiler/aslrestype2d.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2e.c b/source/compiler/aslrestype2e.c index 94fb234..07b7255 100644 --- a/source/compiler/aslrestype2e.c +++ b/source/compiler/aslrestype2e.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2q.c b/source/compiler/aslrestype2q.c index 2e548e8..6db3815 100644 --- a/source/compiler/aslrestype2q.c +++ b/source/compiler/aslrestype2q.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2s.c b/source/compiler/aslrestype2s.c index 7e4884b..9fe03b7 100644 --- a/source/compiler/aslrestype2s.c +++ b/source/compiler/aslrestype2s.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrestype2w.c b/source/compiler/aslrestype2w.c index 33372d8..3b4cc10 100644 --- a/source/compiler/aslrestype2w.c +++ b/source/compiler/aslrestype2w.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslrules.y b/source/compiler/aslrules.y index 7c47eb3..67f0413 100644 --- a/source/compiler/aslrules.y +++ b/source/compiler/aslrules.y @@ -6,7 +6,7 @@ NoEcho(' *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslstartup.c b/source/compiler/aslstartup.c index 84a23db..dcea76d 100644 --- a/source/compiler/aslstartup.c +++ b/source/compiler/aslstartup.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -88,6 +88,7 @@ AslInitializeGlobals ( /* Init compiler globals */ + Gbl_SyntaxError = 0; Gbl_CurrentColumn = 0; Gbl_CurrentLineNumber = 1; Gbl_LogicalLineNumber = 1; diff --git a/source/compiler/aslstubs.c b/source/compiler/aslstubs.c index 6bbb89a..d624fc4 100644 --- a/source/compiler/aslstubs.c +++ b/source/compiler/aslstubs.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslsupport.l b/source/compiler/aslsupport.l index 7ea43a0..b3149cf 100644 --- a/source/compiler/aslsupport.l +++ b/source/compiler/aslsupport.l @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -69,6 +69,14 @@ typedef struct asl_file_node ASL_FILE_NODE *Gbl_IncludeFileStack = NULL; +/******************************************************************************* + * + * FUNCTION: AslParserCleanup + * + * Used to delete the current buffer + * + ******************************************************************************/ + void AslParserCleanup ( void) @@ -188,7 +196,8 @@ AslPopInputFileStack ( Fnode = Gbl_IncludeFileStack; - DbgPrint (ASL_PARSE_OUTPUT, "\nPop InputFile Stack, Fnode %p\n\n", Fnode); + DbgPrint (ASL_PARSE_OUTPUT, + "\nPop InputFile Stack, Fnode %p\n\n", Fnode); if (!Fnode) { @@ -248,11 +257,11 @@ AslPushInputFileStack ( Fnode = UtLocalCalloc (sizeof (ASL_FILE_NODE)); - Fnode->File = yyin; - Fnode->Next = Gbl_IncludeFileStack; - Fnode->State = YY_CURRENT_BUFFER; - Fnode->CurrentLineNumber = Gbl_CurrentLineNumber; - Fnode->Filename = Gbl_Files[ASL_FILE_INPUT].Filename; + Fnode->File = yyin; + Fnode->Next = Gbl_IncludeFileStack; + Fnode->State = YY_CURRENT_BUFFER; + Fnode->Filename = Gbl_Files[ASL_FILE_INPUT].Filename; + Fnode->CurrentLineNumber = Gbl_CurrentLineNumber; /* Push it on the stack */ @@ -263,7 +272,8 @@ AslPushInputFileStack ( State = yy_create_buffer (InputFile, YY_BUF_SIZE); yy_switch_to_buffer (State); - DbgPrint (ASL_PARSE_OUTPUT, "\nPush InputFile Stack, returning %p\n\n", InputFile); + DbgPrint (ASL_PARSE_OUTPUT, + "\nPush InputFile Stack, returning %p\n\n", InputFile); /* Reset the global line count and filename */ @@ -313,7 +323,7 @@ AslResetCurrentLineBuffer ( * * FUNCTION: AslInsertLineBuffer * - * PARAMETERS: SourceChar - One char from the input ASL source file + * PARAMETERS: SourceChar - One char from the input ASL source file * * RETURN: None * @@ -354,7 +364,8 @@ AslInsertLineBuffer ( *Gbl_LineBufPtr = (UINT8) SourceChar; Gbl_LineBufPtr++; - if (Gbl_LineBufPtr > (Gbl_CurrentLineBuffer + (Gbl_LineBufferSize - 1))) + if (Gbl_LineBufPtr > + (Gbl_CurrentLineBuffer + (Gbl_LineBufferSize - 1))) { #if 0 /* @@ -363,9 +374,9 @@ AslInsertLineBuffer ( */ sprintf (MsgBuffer, "Max %u", Gbl_LineBufferSize); AslCommonError (ASL_WARNING, ASL_MSG_LONG_LINE, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, MsgBuffer); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, MsgBuffer); #endif AslResetCurrentLineBuffer (); @@ -384,12 +395,12 @@ AslInsertLineBuffer ( * * FUNCTION: count * - * PARAMETERS: yytext - Contains the matched keyword. - * Type - Keyword/Character type: - * 0 = anything except a keyword - * 1 = pseudo-keywords - * 2 = non-executable ASL keywords - * 3 = executable ASL keywords + * PARAMETERS: yytext - Contains the matched keyword. + * Type - Keyword/Character type: + * 0 = anything except a keyword + * 1 = pseudo-keywords + * 2 = non-executable ASL keywords + * 3 = executable ASL keywords * * RETURN: None * @@ -458,7 +469,7 @@ loop: /* Eat chars until end-of-comment */ - while ((c = input()) != '*' && c != EOF) + while (((c = input ()) != '*') && (c != EOF)) { AslInsertLineBuffer (c); c1 = c; @@ -476,16 +487,16 @@ loop: if ((c1 == '/') && (c == '*')) { AslCommonError (ASL_WARNING, ASL_MSG_NESTED_COMMENT, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_InputByteCount, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_InputByteCount, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); } /* Comment is closed only if the NEXT character is a slash */ AslInsertLineBuffer (c); - if ((c1 = input()) != '/' && c1 != EOF) + if (((c1 = input ()) != '/') && (c1 != EOF)) { unput(c1); goto loop; @@ -505,9 +516,9 @@ EarlyEOF: * Premature End-Of-File */ AslCommonError (ASL_ERROR, ASL_MSG_EARLY_EOF, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); return (FALSE); } @@ -534,7 +545,7 @@ AslDoCommentType2 ( AslInsertLineBuffer ('/'); AslInsertLineBuffer ('/'); - while ((c = input()) != '\n' && c != EOF) + while (((c = input ()) != '\n') && (c != EOF)) { AslInsertLineBuffer (c); } @@ -682,9 +693,9 @@ DoCharacter: /* Unknown escape sequence issue warning, but use the character */ AslCommonError (ASL_WARNING, ASL_MSG_INVALID_ESCAPE, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); break; } break; @@ -709,9 +720,9 @@ DoCharacter: if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)) { AslCommonError (ASL_WARNING, ASL_MSG_INVALID_STRING, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); } else { @@ -753,9 +764,9 @@ DoCharacter: if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)) { AslCommonError (ASL_WARNING, ASL_MSG_INVALID_STRING, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); } else { @@ -797,9 +808,9 @@ DoCharacter: * Premature End-Of-File */ AslCommonError (ASL_ERROR, ASL_MSG_EARLY_EOF, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); return (FALSE); @@ -813,9 +824,9 @@ CompletedString: if (!CleanString) { AslCommonError (ASL_ERROR, ASL_MSG_MEMORY_ALLOCATION, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, NULL); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, NULL); return (FALSE); } @@ -829,8 +840,8 @@ BufferOverflow: /* Literal was too long */ AslCommonError (ASL_ERROR, ASL_MSG_STRING_LENGTH, - Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, - Gbl_CurrentLineOffset, Gbl_CurrentColumn, - Gbl_Files[ASL_FILE_INPUT].Filename, "Max length 4096"); + Gbl_CurrentLineNumber, Gbl_LogicalLineNumber, + Gbl_CurrentLineOffset, Gbl_CurrentColumn, + Gbl_Files[ASL_FILE_INPUT].Filename, "Max length 4096"); return (FALSE); } diff --git a/source/compiler/aslsupport.y b/source/compiler/aslsupport.y index dfeca6e..ba81b7d 100644 --- a/source/compiler/aslsupport.y +++ b/source/compiler/aslsupport.y @@ -6,7 +6,7 @@ NoEcho(' *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asltokens.y b/source/compiler/asltokens.y index 0473f5d..511fa9b 100644 --- a/source/compiler/asltokens.y +++ b/source/compiler/asltokens.y @@ -6,7 +6,7 @@ NoEcho(' *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asltransform.c b/source/compiler/asltransform.c index 34c6ae7..709b7b0 100644 --- a/source/compiler/asltransform.c +++ b/source/compiler/asltransform.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asltree.c b/source/compiler/asltree.c index 4219ffe..b0efc9a 100644 --- a/source/compiler/asltree.c +++ b/source/compiler/asltree.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asltypes.h b/source/compiler/asltypes.h index 5f01c80..4bd24da 100644 --- a/source/compiler/asltypes.h +++ b/source/compiler/asltypes.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/asltypes.y b/source/compiler/asltypes.y index ece5413..3177d1d 100644 --- a/source/compiler/asltypes.y +++ b/source/compiler/asltypes.y @@ -6,7 +6,7 @@ NoEcho(' *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c index c9a9fac..519afbc 100644 --- a/source/compiler/aslutils.c +++ b/source/compiler/aslutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -571,20 +571,36 @@ UtStringCacheCalloc ( { char *Buffer; ASL_CACHE_INFO *Cache; + UINT32 CacheSize = ASL_STRING_CACHE_SIZE; - if (Length > ASL_STRING_CACHE_SIZE) + if (Length > CacheSize) { - Buffer = UtLocalCalloc (Length); - return (Buffer); + CacheSize = Length; + + if (Gbl_StringCacheList) + { + Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); + + /* Link new cache buffer just following head of list */ + + Cache->Next = Gbl_StringCacheList->Next; + Gbl_StringCacheList->Next = Cache; + + /* Leave cache management pointers alone as they pertain to head */ + + Gbl_StringCount++; + Gbl_StringSize += Length; + + return (Cache->Buffer); + } } if ((Gbl_StringCacheNext + Length) >= Gbl_StringCacheLast) { /* Allocate a new buffer */ - Cache = UtLocalCalloc (sizeof (Cache->Next) + - ASL_STRING_CACHE_SIZE); + Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); /* Link new cache buffer to head of list */ @@ -594,7 +610,7 @@ UtStringCacheCalloc ( /* Setup cache management pointers */ Gbl_StringCacheNext = Cache->Buffer; - Gbl_StringCacheLast = Gbl_StringCacheNext + ASL_STRING_CACHE_SIZE; + Gbl_StringCacheLast = Gbl_StringCacheNext + CacheSize; } Gbl_StringCount++; diff --git a/source/compiler/asluuid.c b/source/compiler/asluuid.c index f79a33b..46cb526 100644 --- a/source/compiler/asluuid.c +++ b/source/compiler/asluuid.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslwalks.c b/source/compiler/aslwalks.c index bbf6407..7f78caf 100644 --- a/source/compiler/aslwalks.c +++ b/source/compiler/aslwalks.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/aslxref.c b/source/compiler/aslxref.c index 2f47921..8ffe5ad 100644 --- a/source/compiler/aslxref.c +++ b/source/compiler/aslxref.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtcompile.c b/source/compiler/dtcompile.c index 3168d4c..1c4a708 100644 --- a/source/compiler/dtcompile.c +++ b/source/compiler/dtcompile.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtcompiler.h b/source/compiler/dtcompiler.h index 553f5e6..b14c4c7 100644 --- a/source/compiler/dtcompiler.h +++ b/source/compiler/dtcompiler.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtexpress.c b/source/compiler/dtexpress.c index c431ed3..bf92795 100644 --- a/source/compiler/dtexpress.c +++ b/source/compiler/dtexpress.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtfield.c b/source/compiler/dtfield.c index bcbdab4..4a6f1bb 100644 --- a/source/compiler/dtfield.c +++ b/source/compiler/dtfield.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtio.c b/source/compiler/dtio.c index e90695a..f2f7c22 100644 --- a/source/compiler/dtio.c +++ b/source/compiler/dtio.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtparser.l b/source/compiler/dtparser.l index 2819b0c..3f4c2f3 100644 --- a/source/compiler/dtparser.l +++ b/source/compiler/dtparser.l @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtparser.y b/source/compiler/dtparser.y index 3396f66..fca1e90 100644 --- a/source/compiler/dtparser.y +++ b/source/compiler/dtparser.y @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtsubtable.c b/source/compiler/dtsubtable.c index c29d69d..7d656db 100644 --- a/source/compiler/dtsubtable.c +++ b/source/compiler/dtsubtable.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dttable.c b/source/compiler/dttable.c index bbe43d2..20444fb 100644 --- a/source/compiler/dttable.c +++ b/source/compiler/dttable.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dttemplate.c b/source/compiler/dttemplate.c index 4fb6be0..eb93e9b 100644 --- a/source/compiler/dttemplate.c +++ b/source/compiler/dttemplate.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dttemplate.h b/source/compiler/dttemplate.h index 4011f08..0398d69 100644 --- a/source/compiler/dttemplate.h +++ b/source/compiler/dttemplate.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/dtutils.c b/source/compiler/dtutils.c index a41b6b6..fbaa2be 100644 --- a/source/compiler/dtutils.c +++ b/source/compiler/dtutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/preprocess.h b/source/compiler/preprocess.h index 5322034..d064287 100644 --- a/source/compiler/preprocess.h +++ b/source/compiler/preprocess.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prexpress.c b/source/compiler/prexpress.c index a34f333..b7af412 100644 --- a/source/compiler/prexpress.c +++ b/source/compiler/prexpress.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prmacros.c b/source/compiler/prmacros.c index 63bde60..c278113 100644 --- a/source/compiler/prmacros.c +++ b/source/compiler/prmacros.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prparser.l b/source/compiler/prparser.l index 17b5202..10bd130 100644 --- a/source/compiler/prparser.l +++ b/source/compiler/prparser.l @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prparser.y b/source/compiler/prparser.y index 1667743..f761233 100644 --- a/source/compiler/prparser.y +++ b/source/compiler/prparser.y @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prscan.c b/source/compiler/prscan.c index 9e72419..724fb5a 100644 --- a/source/compiler/prscan.c +++ b/source/compiler/prscan.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/compiler/prutils.c b/source/compiler/prutils.c index a93a14e..f4873bf 100644 --- a/source/compiler/prutils.c +++ b/source/compiler/prutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbcmds.c b/source/components/debugger/dbcmds.c index 44aafbf..8316773 100644 --- a/source/components/debugger/dbcmds.c +++ b/source/components/debugger/dbcmds.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbconvert.c b/source/components/debugger/dbconvert.c index cf7502d..2a517d2 100644 --- a/source/components/debugger/dbconvert.c +++ b/source/components/debugger/dbconvert.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbdisply.c b/source/components/debugger/dbdisply.c index 9d0a216..ac8beeb 100644 --- a/source/components/debugger/dbdisply.c +++ b/source/components/debugger/dbdisply.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -900,7 +900,7 @@ AcpiDbDisplayGpes ( GpeIndex = (i * ACPI_GPE_REGISTER_WIDTH) + j; GpeEventInfo = &GpeBlock->EventInfo[GpeIndex]; - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_NONE) { /* This GPE is not used (no method or handler), ignore it */ @@ -933,7 +933,7 @@ AcpiDbDisplayGpes ( AcpiOsPrintf ("RunOnly, "); } - switch (GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) + switch (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags)) { case ACPI_GPE_DISPATCH_NONE: @@ -944,6 +944,7 @@ AcpiDbDisplayGpes ( AcpiOsPrintf ("Method"); break; + case ACPI_GPE_DISPATCH_HANDLER: AcpiOsPrintf ("Handler"); @@ -961,10 +962,15 @@ AcpiDbDisplayGpes ( AcpiOsPrintf ("Implicit Notify on %u devices", Count); break; + case ACPI_GPE_DISPATCH_RAW_HANDLER: + + AcpiOsPrintf ("RawHandler"); + break; + default: AcpiOsPrintf ("UNKNOWN: %X", - GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK); + ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags)); break; } diff --git a/source/components/debugger/dbexec.c b/source/components/debugger/dbexec.c index 71db787..1cf8760 100644 --- a/source/components/debugger/dbexec.c +++ b/source/components/debugger/dbexec.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbfileio.c b/source/components/debugger/dbfileio.c index abdc454..0cda7ab 100644 --- a/source/components/debugger/dbfileio.c +++ b/source/components/debugger/dbfileio.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbhistry.c b/source/components/debugger/dbhistry.c index 6680306..70bca42 100644 --- a/source/components/debugger/dbhistry.c +++ b/source/components/debugger/dbhistry.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbinput.c b/source/components/debugger/dbinput.c index abf9688..2441bc8 100644 --- a/source/components/debugger/dbinput.c +++ b/source/components/debugger/dbinput.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbmethod.c b/source/components/debugger/dbmethod.c index 05fd2af..3ca1e98 100644 --- a/source/components/debugger/dbmethod.c +++ b/source/components/debugger/dbmethod.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbnames.c b/source/components/debugger/dbnames.c index 29fe1ec..48aaeb0 100644 --- a/source/components/debugger/dbnames.c +++ b/source/components/debugger/dbnames.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbstats.c b/source/components/debugger/dbstats.c index db29db5..0f2c75f 100644 --- a/source/components/debugger/dbstats.c +++ b/source/components/debugger/dbstats.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbtest.c b/source/components/debugger/dbtest.c index 33ee4e4..72a4499 100644 --- a/source/components/debugger/dbtest.c +++ b/source/components/debugger/dbtest.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbutils.c b/source/components/debugger/dbutils.c index 1d4963d..1b33752 100644 --- a/source/components/debugger/dbutils.c +++ b/source/components/debugger/dbutils.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/debugger/dbxface.c b/source/components/debugger/dbxface.c index 9a304ad..64b8402 100644 --- a/source/components/debugger/dbxface.c +++ b/source/components/debugger/dbxface.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmbuffer.c b/source/components/disassembler/dmbuffer.c index afb0842..8cd06a4 100644 --- a/source/components/disassembler/dmbuffer.c +++ b/source/components/disassembler/dmbuffer.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmcstyle.c b/source/components/disassembler/dmcstyle.c index 4db1b96..1f13819 100644 --- a/source/components/disassembler/dmcstyle.c +++ b/source/components/disassembler/dmcstyle.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmdeferred.c b/source/components/disassembler/dmdeferred.c index 56c6b38..1b4ef20 100644 --- a/source/components/disassembler/dmdeferred.c +++ b/source/components/disassembler/dmdeferred.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmnames.c b/source/components/disassembler/dmnames.c index 4b48a34..f942aea 100644 --- a/source/components/disassembler/dmnames.c +++ b/source/components/disassembler/dmnames.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmobject.c b/source/components/disassembler/dmobject.c index 00fc680..6023c78 100644 --- a/source/components/disassembler/dmobject.c +++ b/source/components/disassembler/dmobject.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmopcode.c b/source/components/disassembler/dmopcode.c index e356e38..bcd68dc 100644 --- a/source/components/disassembler/dmopcode.c +++ b/source/components/disassembler/dmopcode.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmresrc.c b/source/components/disassembler/dmresrc.c index 3fcfa41..d1c3abc 100644 --- a/source/components/disassembler/dmresrc.c +++ b/source/components/disassembler/dmresrc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmresrcl.c b/source/components/disassembler/dmresrcl.c index a7db21f..9cdb24c 100644 --- a/source/components/disassembler/dmresrcl.c +++ b/source/components/disassembler/dmresrcl.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmresrcl2.c b/source/components/disassembler/dmresrcl2.c index cb6dd68..a43a605 100644 --- a/source/components/disassembler/dmresrcl2.c +++ b/source/components/disassembler/dmresrcl2.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmresrcs.c b/source/components/disassembler/dmresrcs.c index 3710166..8924cf9 100644 --- a/source/components/disassembler/dmresrcs.c +++ b/source/components/disassembler/dmresrcs.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmutils.c b/source/components/disassembler/dmutils.c index c075b69..cf8cf4a 100644 --- a/source/components/disassembler/dmutils.c +++ b/source/components/disassembler/dmutils.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/disassembler/dmwalk.c b/source/components/disassembler/dmwalk.c index 823ce18..200da82 100644 --- a/source/components/disassembler/dmwalk.c +++ b/source/components/disassembler/dmwalk.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsargs.c b/source/components/dispatcher/dsargs.c index 8595402..c9a1709 100644 --- a/source/components/dispatcher/dsargs.c +++ b/source/components/dispatcher/dsargs.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dscontrol.c b/source/components/dispatcher/dscontrol.c index 2d943ba..03ba14c 100644 --- a/source/components/dispatcher/dscontrol.c +++ b/source/components/dispatcher/dscontrol.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsfield.c b/source/components/dispatcher/dsfield.c index 93796e6..83100be 100644 --- a/source/components/dispatcher/dsfield.c +++ b/source/components/dispatcher/dsfield.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsinit.c b/source/components/dispatcher/dsinit.c index 9546b09..8957eff 100644 --- a/source/components/dispatcher/dsinit.c +++ b/source/components/dispatcher/dsinit.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsmethod.c b/source/components/dispatcher/dsmethod.c index 6ae1b31..54a5c82 100644 --- a/source/components/dispatcher/dsmethod.c +++ b/source/components/dispatcher/dsmethod.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsmthdat.c b/source/components/dispatcher/dsmthdat.c index d8021cf..fe98692 100644 --- a/source/components/dispatcher/dsmthdat.c +++ b/source/components/dispatcher/dsmthdat.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsobject.c b/source/components/dispatcher/dsobject.c index b74b068..54899d7 100644 --- a/source/components/dispatcher/dsobject.c +++ b/source/components/dispatcher/dsobject.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsopcode.c b/source/components/dispatcher/dsopcode.c index b666172..bec7e58 100644 --- a/source/components/dispatcher/dsopcode.c +++ b/source/components/dispatcher/dsopcode.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dsutils.c b/source/components/dispatcher/dsutils.c index d1d2545..76d3e82 100644 --- a/source/components/dispatcher/dsutils.c +++ b/source/components/dispatcher/dsutils.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dswexec.c b/source/components/dispatcher/dswexec.c index 5ce55a8..f5f9072 100644 --- a/source/components/dispatcher/dswexec.c +++ b/source/components/dispatcher/dswexec.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dswload.c b/source/components/dispatcher/dswload.c index 0495624..ab2d80d 100644 --- a/source/components/dispatcher/dswload.c +++ b/source/components/dispatcher/dswload.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dswload2.c b/source/components/dispatcher/dswload2.c index a251661..f7d43fe 100644 --- a/source/components/dispatcher/dswload2.c +++ b/source/components/dispatcher/dswload2.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dswscope.c b/source/components/dispatcher/dswscope.c index b6defde..fe9a256 100644 --- a/source/components/dispatcher/dswscope.c +++ b/source/components/dispatcher/dswscope.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/dispatcher/dswstate.c b/source/components/dispatcher/dswstate.c index 7c53f61..b45974f 100644 --- a/source/components/dispatcher/dswstate.c +++ b/source/components/dispatcher/dswstate.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evevent.c b/source/components/events/evevent.c index 9a410c4..96e4682 100644 --- a/source/components/events/evevent.c +++ b/source/components/events/evevent.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evglock.c b/source/components/events/evglock.c index fb12788..7617d5c 100644 --- a/source/components/events/evglock.c +++ b/source/components/events/evglock.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evgpe.c b/source/components/events/evgpe.c index 9394025..4e635ce 100644 --- a/source/components/events/evgpe.c +++ b/source/components/events/evgpe.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -131,18 +131,6 @@ AcpiEvEnableGpe ( ACPI_FUNCTION_TRACE (EvEnableGpe); - /* - * We will only allow a GPE to be enabled if it has either an associated - * method (_Lxx/_Exx) or a handler, or is using the implicit notify - * feature. Otherwise, the GPE will be immediately disabled by - * AcpiEvGpeDispatch the first time it fires. - */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == - ACPI_GPE_DISPATCH_NONE) - { - return_ACPI_STATUS (AE_NO_HANDLER); - } - /* Clear the GPE (of stale events) */ Status = AcpiHwClearGpe (GpeEventInfo); @@ -153,7 +141,7 @@ AcpiEvEnableGpe ( /* Enable the requested GPE */ - Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_ENABLE); + Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_ENABLE_SAVE); return_ACPI_STATUS (Status); } @@ -243,7 +231,7 @@ AcpiEvRemoveGpeReference ( Status = AcpiEvUpdateGpeEnableMask (GpeEventInfo); if (ACPI_SUCCESS (Status)) { - Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_DISABLE); + Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_DISABLE_SAVE); } if (ACPI_FAILURE (Status)) @@ -383,7 +371,11 @@ AcpiEvGpeDetect ( { ACPI_STATUS Status; ACPI_GPE_BLOCK_INFO *GpeBlock; + ACPI_NAMESPACE_NODE *GpeDevice; ACPI_GPE_REGISTER_INFO *GpeRegisterInfo; + ACPI_GPE_EVENT_INFO *GpeEventInfo; + UINT32 GpeNumber; + ACPI_GPE_HANDLER_INFO *GpeHandlerInfo; UINT32 IntStatus = ACPI_INTERRUPT_NOT_HANDLED; UINT8 EnabledStatusByte; UINT32 StatusReg; @@ -414,6 +406,8 @@ AcpiEvGpeDetect ( GpeBlock = GpeXruptList->GpeBlockListHead; while (GpeBlock) { + GpeDevice = GpeBlock->Node; + /* * Read all of the 8-bit GPE status and enable registers in this GPE * block, saving all of them. Find all currently active GP events. @@ -482,16 +476,55 @@ AcpiEvGpeDetect ( { /* Examine one GPE bit */ + GpeEventInfo = &GpeBlock->EventInfo[((ACPI_SIZE) i * + ACPI_GPE_REGISTER_WIDTH) + j]; + GpeNumber = j + GpeRegisterInfo->BaseGpeNumber; + if (EnabledStatusByte & (1 << j)) { - /* - * Found an active GPE. Dispatch the event to a handler - * or method. - */ - IntStatus |= AcpiEvGpeDispatch (GpeBlock->Node, - &GpeBlock->EventInfo[((ACPI_SIZE) i * - ACPI_GPE_REGISTER_WIDTH) + j], - j + GpeRegisterInfo->BaseGpeNumber); + /* Invoke global event handler if present */ + + AcpiGpeCount++; + if (AcpiGbl_GlobalEventHandler) + { + AcpiGbl_GlobalEventHandler (ACPI_EVENT_TYPE_GPE, + GpeDevice, GpeNumber, + AcpiGbl_GlobalEventHandlerContext); + } + + /* Found an active GPE */ + + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_RAW_HANDLER) + { + /* Dispatch the event to a raw handler */ + + GpeHandlerInfo = GpeEventInfo->Dispatch.Handler; + + /* + * There is no protection around the namespace node + * and the GPE handler to ensure a safe destruction + * because: + * 1. The namespace node is expected to always + * exist after loading a table. + * 2. The GPE handler is expected to be flushed by + * AcpiOsWaitEventsComplete() before the + * destruction. + */ + AcpiOsReleaseLock (AcpiGbl_GpeLock, Flags); + IntStatus |= GpeHandlerInfo->Address ( + GpeDevice, GpeNumber, GpeHandlerInfo->Context); + Flags = AcpiOsAcquireLock (AcpiGbl_GpeLock); + } + else + { + /* + * Dispatch the event to a standard handler or + * method. + */ + IntStatus |= AcpiEvGpeDispatch (GpeDevice, + GpeEventInfo, GpeNumber); + } } } } @@ -527,8 +560,7 @@ AcpiEvAsynchExecuteGpeMethod ( void *Context) { ACPI_GPE_EVENT_INFO *GpeEventInfo = Context; - ACPI_STATUS Status; - ACPI_GPE_EVENT_INFO *LocalGpeEventInfo; + ACPI_STATUS Status = AE_OK; ACPI_EVALUATE_INFO *Info; ACPI_GPE_NOTIFY_INFO *Notify; @@ -536,49 +568,9 @@ AcpiEvAsynchExecuteGpeMethod ( ACPI_FUNCTION_TRACE (EvAsynchExecuteGpeMethod); - /* Allocate a local GPE block */ - - LocalGpeEventInfo = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_GPE_EVENT_INFO)); - if (!LocalGpeEventInfo) - { - ACPI_EXCEPTION ((AE_INFO, AE_NO_MEMORY, - "while handling a GPE")); - return_VOID; - } - - Status = AcpiUtAcquireMutex (ACPI_MTX_EVENTS); - if (ACPI_FAILURE (Status)) - { - ACPI_FREE (LocalGpeEventInfo); - return_VOID; - } - - /* Must revalidate the GpeNumber/GpeBlock */ - - if (!AcpiEvValidGpeEvent (GpeEventInfo)) - { - Status = AcpiUtReleaseMutex (ACPI_MTX_EVENTS); - ACPI_FREE (LocalGpeEventInfo); - return_VOID; - } - - /* - * Take a snapshot of the GPE info for this level - we copy the info to - * prevent a race condition with RemoveHandler/RemoveBlock. - */ - ACPI_MEMCPY (LocalGpeEventInfo, GpeEventInfo, - sizeof (ACPI_GPE_EVENT_INFO)); - - Status = AcpiUtReleaseMutex (ACPI_MTX_EVENTS); - if (ACPI_FAILURE (Status)) - { - ACPI_FREE (LocalGpeEventInfo); - return_VOID; - } - /* Do the correct dispatch - normal method or implicit notify */ - switch (LocalGpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) + switch (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags)) { case ACPI_GPE_DISPATCH_NOTIFY: /* @@ -592,7 +584,7 @@ AcpiEvAsynchExecuteGpeMethod ( * June 2012: Expand implicit notify mechanism to support * notifies on multiple device objects. */ - Notify = LocalGpeEventInfo->Dispatch.NotifyList; + Notify = GpeEventInfo->Dispatch.NotifyList; while (ACPI_SUCCESS (Status) && Notify) { Status = AcpiEvQueueNotifyRequest (Notify->DeviceNode, @@ -617,7 +609,7 @@ AcpiEvAsynchExecuteGpeMethod ( * Invoke the GPE Method (_Lxx, _Exx) i.e., evaluate the * _Lxx/_Exx control method that corresponds to this GPE */ - Info->PrefixNode = LocalGpeEventInfo->Dispatch.MethodNode; + Info->PrefixNode = GpeEventInfo->Dispatch.MethodNode; Info->Flags = ACPI_IGNORE_RETURN_VALUE; Status = AcpiNsEvaluate (Info); @@ -628,23 +620,26 @@ AcpiEvAsynchExecuteGpeMethod ( { ACPI_EXCEPTION ((AE_INFO, Status, "while evaluating GPE method [%4.4s]", - AcpiUtGetNodeName (LocalGpeEventInfo->Dispatch.MethodNode))); + AcpiUtGetNodeName (GpeEventInfo->Dispatch.MethodNode))); } break; default: - return_VOID; /* Should never happen */ + goto ErrorExit; /* Should never happen */ } /* Defer enabling of GPE until all notify handlers are done */ Status = AcpiOsExecute (OSL_NOTIFY_HANDLER, - AcpiEvAsynchEnableGpe, LocalGpeEventInfo); - if (ACPI_FAILURE (Status)) + AcpiEvAsynchEnableGpe, GpeEventInfo); + if (ACPI_SUCCESS (Status)) { - ACPI_FREE (LocalGpeEventInfo); + return_VOID; } + +ErrorExit: + AcpiEvAsynchEnableGpe (GpeEventInfo); return_VOID; } @@ -668,11 +663,13 @@ AcpiEvAsynchEnableGpe ( void *Context) { ACPI_GPE_EVENT_INFO *GpeEventInfo = Context; + ACPI_CPU_FLAGS Flags; + Flags = AcpiOsAcquireLock (AcpiGbl_GpeLock); (void) AcpiEvFinishGpe (GpeEventInfo); + AcpiOsReleaseLock (AcpiGbl_GpeLock, Flags); - ACPI_FREE (GpeEventInfo); return; } @@ -713,7 +710,7 @@ AcpiEvFinishGpe ( /* * Enable this GPE, conditionally. This means that the GPE will - * only be physically enabled if the EnableForRun bit is set + * only be physically enabled if the EnableMask bit is set * in the EventInfo. */ (void) AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_CONDITIONAL_ENABLE); @@ -751,15 +748,6 @@ AcpiEvGpeDispatch ( ACPI_FUNCTION_TRACE (EvGpeDispatch); - /* Invoke global event handler if present */ - - AcpiGpeCount++; - if (AcpiGbl_GlobalEventHandler) - { - AcpiGbl_GlobalEventHandler (ACPI_EVENT_TYPE_GPE, GpeDevice, - GpeNumber, AcpiGbl_GlobalEventHandlerContext); - } - /* * Always disable the GPE so that it does not keep firing before * any asynchronous activity completes (either from the execution @@ -802,7 +790,7 @@ AcpiEvGpeDispatch ( * If there is neither a handler nor a method, leave the GPE * disabled. */ - switch (GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) + switch (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags)) { case ACPI_GPE_DISPATCH_HANDLER: diff --git a/source/components/events/evgpeblk.c b/source/components/events/evgpeblk.c index f0db7ee..d3342a5 100644 --- a/source/components/events/evgpeblk.c +++ b/source/components/events/evgpeblk.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -518,8 +518,9 @@ AcpiEvInitializeGpeBlock ( * Ignore GPEs that have no corresponding _Lxx/_Exx method * and GPEs that are used to wake the system */ - if (((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == ACPI_GPE_DISPATCH_NONE) || - ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == ACPI_GPE_DISPATCH_HANDLER) || + if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_NONE) || + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_HANDLER) || + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_RAW_HANDLER) || (GpeEventInfo->Flags & ACPI_GPE_CAN_WAKE)) { continue; diff --git a/source/components/events/evgpeinit.c b/source/components/events/evgpeinit.c index ac54f00..1943d23 100644 --- a/source/components/events/evgpeinit.c +++ b/source/components/events/evgpeinit.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -419,15 +419,17 @@ AcpiEvMatchGpeMethod ( return_ACPI_STATUS (AE_OK); } - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == - ACPI_GPE_DISPATCH_HANDLER) + if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_HANDLER) || + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_RAW_HANDLER)) { /* If there is already a handler, ignore this GPE method */ return_ACPI_STATUS (AE_OK); } - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_METHOD) { /* diff --git a/source/components/events/evgpeutil.c b/source/components/events/evgpeutil.c index c238589..18cbbf7 100644 --- a/source/components/events/evgpeutil.c +++ b/source/components/events/evgpeutil.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -115,60 +115,6 @@ UnlockAndExit: /******************************************************************************* * - * FUNCTION: AcpiEvValidGpeEvent - * - * PARAMETERS: GpeEventInfo - Info for this GPE - * - * RETURN: TRUE if the GpeEvent is valid - * - * DESCRIPTION: Validate a GPE event. DO NOT CALL FROM INTERRUPT LEVEL. - * Should be called only when the GPE lists are semaphore locked - * and not subject to change. - * - ******************************************************************************/ - -BOOLEAN -AcpiEvValidGpeEvent ( - ACPI_GPE_EVENT_INFO *GpeEventInfo) -{ - ACPI_GPE_XRUPT_INFO *GpeXruptBlock; - ACPI_GPE_BLOCK_INFO *GpeBlock; - - - ACPI_FUNCTION_ENTRY (); - - - /* No need for spin lock since we are not changing any list elements */ - - /* Walk the GPE interrupt levels */ - - GpeXruptBlock = AcpiGbl_GpeXruptListHead; - while (GpeXruptBlock) - { - GpeBlock = GpeXruptBlock->GpeBlockListHead; - - /* Walk the GPE blocks on this interrupt level */ - - while (GpeBlock) - { - if ((&GpeBlock->EventInfo[0] <= GpeEventInfo) && - (&GpeBlock->EventInfo[GpeBlock->GpeCount] > GpeEventInfo)) - { - return (TRUE); - } - - GpeBlock = GpeBlock->Next; - } - - GpeXruptBlock = GpeXruptBlock->Next; - } - - return (FALSE); -} - - -/******************************************************************************* - * * FUNCTION: AcpiEvGetGpeDevice * * PARAMETERS: GPE_WALK_CALLBACK @@ -416,8 +362,10 @@ AcpiEvDeleteGpeHandlers ( GpeEventInfo = &GpeBlock->EventInfo[((ACPI_SIZE) i * ACPI_GPE_REGISTER_WIDTH) + j]; - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == - ACPI_GPE_DISPATCH_HANDLER) + if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_HANDLER) || + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_RAW_HANDLER)) { /* Delete an installed handler block */ @@ -425,7 +373,7 @@ AcpiEvDeleteGpeHandlers ( GpeEventInfo->Dispatch.Handler = NULL; GpeEventInfo->Flags &= ~ACPI_GPE_DISPATCH_MASK; } - else if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == + else if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_NOTIFY) { /* Delete the implicit notification device list */ diff --git a/source/components/events/evhandler.c b/source/components/events/evhandler.c index b5138e9..c797abe 100644 --- a/source/components/events/evhandler.c +++ b/source/components/events/evhandler.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evmisc.c b/source/components/events/evmisc.c index 72f6718..accf222 100644 --- a/source/components/events/evmisc.c +++ b/source/components/events/evmisc.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evregion.c b/source/components/events/evregion.c index 14ac452..e578fb4 100644 --- a/source/components/events/evregion.c +++ b/source/components/events/evregion.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evrgnini.c b/source/components/events/evrgnini.c index 78c8868..6cf1b03 100644 --- a/source/components/events/evrgnini.c +++ b/source/components/events/evrgnini.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evsci.c b/source/components/events/evsci.c index 664b408..93b307e 100644 --- a/source/components/events/evsci.c +++ b/source/components/events/evsci.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evxface.c b/source/components/events/evxface.c index 4e25f61..0a3b6c8 100644 --- a/source/components/events/evxface.c +++ b/source/components/events/evxface.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -52,6 +52,21 @@ #define _COMPONENT ACPI_EVENTS ACPI_MODULE_NAME ("evxface") +#if (!ACPI_REDUCED_HARDWARE) + +/* Local prototypes */ + +static ACPI_STATUS +AcpiEvInstallGpeHandler ( + ACPI_HANDLE GpeDevice, + UINT32 GpeNumber, + UINT32 Type, + BOOLEAN IsRawHandler, + ACPI_GPE_HANDLER Address, + void *Context); + +#endif + /******************************************************************************* * @@ -822,27 +837,31 @@ ACPI_EXPORT_SYMBOL (AcpiRemoveFixedEventHandler) /******************************************************************************* * - * FUNCTION: AcpiInstallGpeHandler + * FUNCTION: AcpiEvInstallGpeHandler * * PARAMETERS: GpeDevice - Namespace node for the GPE (NULL for FADT * defined GPEs) * GpeNumber - The GPE number within the GPE block * Type - Whether this GPE should be treated as an * edge- or level-triggered interrupt. + * IsRawHandler - Whether this GPE should be handled using + * the special GPE handler mode. * Address - Address of the handler * Context - Value passed to the handler on each GPE * * RETURN: Status * - * DESCRIPTION: Install a handler for a General Purpose Event. + * DESCRIPTION: Internal function to install a handler for a General Purpose + * Event. * ******************************************************************************/ -ACPI_STATUS -AcpiInstallGpeHandler ( +static ACPI_STATUS +AcpiEvInstallGpeHandler ( ACPI_HANDLE GpeDevice, UINT32 GpeNumber, UINT32 Type, + BOOLEAN IsRawHandler, ACPI_GPE_HANDLER Address, void *Context) { @@ -852,7 +871,7 @@ AcpiInstallGpeHandler ( ACPI_CPU_FLAGS Flags; - ACPI_FUNCTION_TRACE (AcpiInstallGpeHandler); + ACPI_FUNCTION_TRACE (EvInstallGpeHandler); /* Parameter validation */ @@ -890,8 +909,10 @@ AcpiInstallGpeHandler ( /* Make sure that there isn't a handler there already */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == - ACPI_GPE_DISPATCH_HANDLER) + if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_HANDLER) || + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == + ACPI_GPE_DISPATCH_RAW_HANDLER)) { Status = AE_ALREADY_EXISTS; goto FreeAndExit; @@ -908,8 +929,10 @@ AcpiInstallGpeHandler ( * automatically during initialization, in which case it has to be * disabled now to avoid spurious execution of the handler. */ - if (((Handler->OriginalFlags & ACPI_GPE_DISPATCH_METHOD) || - (Handler->OriginalFlags & ACPI_GPE_DISPATCH_NOTIFY)) && + if (((ACPI_GPE_DISPATCH_TYPE (Handler->OriginalFlags) == + ACPI_GPE_DISPATCH_METHOD) || + (ACPI_GPE_DISPATCH_TYPE (Handler->OriginalFlags) == + ACPI_GPE_DISPATCH_NOTIFY)) && GpeEventInfo->RuntimeCount) { Handler->OriginallyEnabled = TRUE; @@ -930,7 +953,8 @@ AcpiInstallGpeHandler ( /* Setup up dispatch flags to indicate handler (vs. method/notify) */ GpeEventInfo->Flags &= ~(ACPI_GPE_XRUPT_TYPE_MASK | ACPI_GPE_DISPATCH_MASK); - GpeEventInfo->Flags |= (UINT8) (Type | ACPI_GPE_DISPATCH_HANDLER); + GpeEventInfo->Flags |= (UINT8) (Type | (IsRawHandler ? + ACPI_GPE_DISPATCH_RAW_HANDLER : ACPI_GPE_DISPATCH_HANDLER)); AcpiOsReleaseLock (AcpiGbl_GpeLock, Flags); @@ -945,11 +969,91 @@ FreeAndExit: goto UnlockAndExit; } + +/******************************************************************************* + * + * FUNCTION: AcpiInstallGpeHandler + * + * PARAMETERS: GpeDevice - Namespace node for the GPE (NULL for FADT + * defined GPEs) + * GpeNumber - The GPE number within the GPE block + * Type - Whether this GPE should be treated as an + * edge- or level-triggered interrupt. + * Address - Address of the handler + * Context - Value passed to the handler on each GPE + * + * RETURN: Status + * + * DESCRIPTION: Install a handler for a General Purpose Event. + * + ******************************************************************************/ + +ACPI_STATUS +AcpiInstallGpeHandler ( + ACPI_HANDLE GpeDevice, + UINT32 GpeNumber, + UINT32 Type, + ACPI_GPE_HANDLER Address, + void *Context) +{ + ACPI_STATUS Status; + + + ACPI_FUNCTION_TRACE (AcpiInstallGpeHandler); + + + Status = AcpiEvInstallGpeHandler (GpeDevice, GpeNumber, Type, FALSE, + Address, Context); + + return_ACPI_STATUS (Status); +} + ACPI_EXPORT_SYMBOL (AcpiInstallGpeHandler) /******************************************************************************* * + * FUNCTION: AcpiInstallGpeRawHandler + * + * PARAMETERS: GpeDevice - Namespace node for the GPE (NULL for FADT + * defined GPEs) + * GpeNumber - The GPE number within the GPE block + * Type - Whether this GPE should be treated as an + * edge- or level-triggered interrupt. + * Address - Address of the handler + * Context - Value passed to the handler on each GPE + * + * RETURN: Status + * + * DESCRIPTION: Install a handler for a General Purpose Event. + * + ******************************************************************************/ + +ACPI_STATUS +AcpiInstallGpeRawHandler ( + ACPI_HANDLE GpeDevice, + UINT32 GpeNumber, + UINT32 Type, + ACPI_GPE_HANDLER Address, + void *Context) +{ + ACPI_STATUS Status; + + + ACPI_FUNCTION_TRACE (AcpiInstallGpeRawHandler); + + + Status = AcpiEvInstallGpeHandler (GpeDevice, GpeNumber, Type, TRUE, + Address, Context); + + return_ACPI_STATUS (Status); +} + +ACPI_EXPORT_SYMBOL (AcpiInstallGpeRawHandler) + + +/******************************************************************************* + * * FUNCTION: AcpiRemoveGpeHandler * * PARAMETERS: GpeDevice - Namespace node for the GPE (NULL for FADT @@ -1004,8 +1108,10 @@ AcpiRemoveGpeHandler ( /* Make sure that a handler is indeed installed */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) != - ACPI_GPE_DISPATCH_HANDLER) + if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) != + ACPI_GPE_DISPATCH_HANDLER) && + (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) != + ACPI_GPE_DISPATCH_RAW_HANDLER)) { Status = AE_NOT_EXIST; goto UnlockAndExit; @@ -1022,6 +1128,7 @@ AcpiRemoveGpeHandler ( /* Remove the handler */ Handler = GpeEventInfo->Dispatch.Handler; + GpeEventInfo->Dispatch.Handler = NULL; /* Restore Method node (if any), set dispatch flags */ @@ -1035,8 +1142,10 @@ AcpiRemoveGpeHandler ( * enabled, it should be enabled at this point to restore the * post-initialization configuration. */ - if (((Handler->OriginalFlags & ACPI_GPE_DISPATCH_METHOD) || - (Handler->OriginalFlags & ACPI_GPE_DISPATCH_NOTIFY)) && + if (((ACPI_GPE_DISPATCH_TYPE (Handler->OriginalFlags) == + ACPI_GPE_DISPATCH_METHOD) || + (ACPI_GPE_DISPATCH_TYPE (Handler->OriginalFlags) == + ACPI_GPE_DISPATCH_NOTIFY)) && Handler->OriginallyEnabled) { (void) AcpiEvAddGpeReference (GpeEventInfo); diff --git a/source/components/events/evxfevnt.c b/source/components/events/evxfevnt.c index e007541..81675ed 100644 --- a/source/components/events/evxfevnt.c +++ b/source/components/events/evxfevnt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/events/evxfgpe.c b/source/components/events/evxfgpe.c index 56f54f3..79a055c 100644 --- a/source/components/events/evxfgpe.c +++ b/source/components/events/evxfgpe.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -147,7 +147,7 @@ AcpiEnableGpe ( GpeEventInfo = AcpiEvGetGpeEventInfo (GpeDevice, GpeNumber); if (GpeEventInfo) { - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) != + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) != ACPI_GPE_DISPATCH_NONE) { Status = AcpiEvAddGpeReference (GpeEventInfo); @@ -221,12 +221,21 @@ ACPI_EXPORT_SYMBOL (AcpiDisableGpe) * RETURN: Status * * DESCRIPTION: Enable or disable an individual GPE. This function bypasses - * the reference count mechanism used in the AcpiEnableGpe and - * AcpiDisableGpe interfaces -- and should be used with care. - * - * Note: Typically used to disable a runtime GPE for short period of time, - * then re-enable it, without disturbing the existing reference counts. This - * is useful, for example, in the Embedded Controller (EC) driver. + * the reference count mechanism used in the AcpiEnableGpe(), + * AcpiDisableGpe() interfaces. + * This API is typically used by the GPE raw handler mode driver + * to switch between the polling mode and the interrupt mode after + * the driver has enabled the GPE. + * The APIs should be invoked in this order: + * AcpiEnableGpe() <- Ensure the reference count > 0 + * AcpiSetGpe(ACPI_GPE_DISABLE) <- Enter polling mode + * AcpiSetGpe(ACPI_GPE_ENABLE) <- Leave polling mode + * AcpiDisableGpe() <- Decrease the reference count + * + * Note: If a GPE is shared by 2 silicon components, then both the drivers + * should support GPE polling mode or disabling the GPE for long period + * for one driver may break the other. So use it with care since all + * firmware _Lxx/_Exx handlers currently rely on the GPE interrupt mode. * ******************************************************************************/ @@ -261,7 +270,7 @@ AcpiSetGpe ( { case ACPI_GPE_ENABLE: - Status = AcpiEvEnableGpe (GpeEventInfo); + Status = AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_ENABLE); break; case ACPI_GPE_DISABLE: @@ -430,7 +439,7 @@ AcpiSetupGpeForWake ( * known as an "implicit notify". Note: The GPE is assumed to be * level-triggered (for windows compatibility). */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_NONE) { /* @@ -445,7 +454,7 @@ AcpiSetupGpeForWake ( * If we already have an implicit notify on this GPE, add * this device to the notify list. */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == ACPI_GPE_DISPATCH_NOTIFY) { /* Ensure that the device is not already in the list */ @@ -802,6 +811,44 @@ AcpiEnableAllRuntimeGpes ( ACPI_EXPORT_SYMBOL (AcpiEnableAllRuntimeGpes) +/****************************************************************************** + * + * FUNCTION: AcpiEnableAllWakeupGpes + * + * PARAMETERS: None + * + * RETURN: Status + * + * DESCRIPTION: Enable all "wakeup" GPEs and disable all of the other GPEs, in + * all GPE blocks. + * + ******************************************************************************/ + +ACPI_STATUS +AcpiEnableAllWakeupGpes ( + void) +{ + ACPI_STATUS Status; + + + ACPI_FUNCTION_TRACE (AcpiEnableAllWakeupGpes); + + + Status = AcpiUtAcquireMutex (ACPI_MTX_EVENTS); + if (ACPI_FAILURE (Status)) + { + return_ACPI_STATUS (Status); + } + + Status = AcpiHwEnableAllWakeupGpes (); + (void) AcpiUtReleaseMutex (ACPI_MTX_EVENTS); + + return_ACPI_STATUS (Status); +} + +ACPI_EXPORT_SYMBOL (AcpiEnableAllWakeupGpes) + + /******************************************************************************* * * FUNCTION: AcpiInstallGpeBlock diff --git a/source/components/events/evxfregn.c b/source/components/events/evxfregn.c index 3a44b3f..1126bbe 100644 --- a/source/components/events/evxfregn.c +++ b/source/components/events/evxfregn.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exconfig.c b/source/components/executer/exconfig.c index 19230a2..aa233b7 100644 --- a/source/components/executer/exconfig.c +++ b/source/components/executer/exconfig.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exconvrt.c b/source/components/executer/exconvrt.c index 355d726..e0ef653 100644 --- a/source/components/executer/exconvrt.c +++ b/source/components/executer/exconvrt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/excreate.c b/source/components/executer/excreate.c index cb8d50d..c7f945b 100644 --- a/source/components/executer/excreate.c +++ b/source/components/executer/excreate.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exdebug.c b/source/components/executer/exdebug.c index c3ee4b1..dd41f93 100644 --- a/source/components/executer/exdebug.c +++ b/source/components/executer/exdebug.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exdump.c b/source/components/executer/exdump.c index 4859153..5ef4e39 100644 --- a/source/components/executer/exdump.c +++ b/source/components/executer/exdump.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exfield.c b/source/components/executer/exfield.c index 64cfc71..9407fa7 100644 --- a/source/components/executer/exfield.c +++ b/source/components/executer/exfield.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exfldio.c b/source/components/executer/exfldio.c index 2387e17..a1b7139 100644 --- a/source/components/executer/exfldio.c +++ b/source/components/executer/exfldio.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exmisc.c b/source/components/executer/exmisc.c index bdca576..49fad87 100644 --- a/source/components/executer/exmisc.c +++ b/source/components/executer/exmisc.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exmutex.c b/source/components/executer/exmutex.c index b0bca55..acbb6f8 100644 --- a/source/components/executer/exmutex.c +++ b/source/components/executer/exmutex.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exnames.c b/source/components/executer/exnames.c index 0b6db43..dbadb5a 100644 --- a/source/components/executer/exnames.c +++ b/source/components/executer/exnames.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exoparg1.c b/source/components/executer/exoparg1.c index 3b6e94c..e44dda7 100644 --- a/source/components/executer/exoparg1.c +++ b/source/components/executer/exoparg1.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exoparg2.c b/source/components/executer/exoparg2.c index eea4d8e..419aa6d 100644 --- a/source/components/executer/exoparg2.c +++ b/source/components/executer/exoparg2.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exoparg3.c b/source/components/executer/exoparg3.c index 5a6045e..94293f7 100644 --- a/source/components/executer/exoparg3.c +++ b/source/components/executer/exoparg3.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exoparg6.c b/source/components/executer/exoparg6.c index f560e73..ccc1c78 100644 --- a/source/components/executer/exoparg6.c +++ b/source/components/executer/exoparg6.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exprep.c b/source/components/executer/exprep.c index a157208..6cadb50 100644 --- a/source/components/executer/exprep.c +++ b/source/components/executer/exprep.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exregion.c b/source/components/executer/exregion.c index fe9df6e..41512d9 100644 --- a/source/components/executer/exregion.c +++ b/source/components/executer/exregion.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exresnte.c b/source/components/executer/exresnte.c index 0589dd6..63b37b0 100644 --- a/source/components/executer/exresnte.c +++ b/source/components/executer/exresnte.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exresolv.c b/source/components/executer/exresolv.c index 287b6f6..f97263c 100644 --- a/source/components/executer/exresolv.c +++ b/source/components/executer/exresolv.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exresop.c b/source/components/executer/exresop.c index 8012921..e2262de 100644 --- a/source/components/executer/exresop.c +++ b/source/components/executer/exresop.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exstore.c b/source/components/executer/exstore.c index 4c65549..6215ff3 100644 --- a/source/components/executer/exstore.c +++ b/source/components/executer/exstore.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exstoren.c b/source/components/executer/exstoren.c index bc7a3c9..c14b30d 100644 --- a/source/components/executer/exstoren.c +++ b/source/components/executer/exstoren.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exstorob.c b/source/components/executer/exstorob.c index 036d0c0..24db5ce 100644 --- a/source/components/executer/exstorob.c +++ b/source/components/executer/exstorob.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exsystem.c b/source/components/executer/exsystem.c index 5e7ec09..2862c0d 100644 --- a/source/components/executer/exsystem.c +++ b/source/components/executer/exsystem.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/executer/exutils.c b/source/components/executer/exutils.c index 0c00884..25676a1 100644 --- a/source/components/executer/exutils.c +++ b/source/components/executer/exutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwacpi.c b/source/components/hardware/hwacpi.c index 7e0a504..dd92c9d 100644 --- a/source/components/hardware/hwacpi.c +++ b/source/components/hardware/hwacpi.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwesleep.c b/source/components/hardware/hwesleep.c index be8b2ee..4d53c25 100644 --- a/source/components/hardware/hwesleep.c +++ b/source/components/hardware/hwesleep.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwgpe.c b/source/components/hardware/hwgpe.c index 701fa78..b61e92d 100644 --- a/source/components/hardware/hwgpe.c +++ b/source/components/hardware/hwgpe.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -58,6 +58,11 @@ AcpiHwEnableWakeupGpeBlock ( ACPI_GPE_BLOCK_INFO *GpeBlock, void *Context); +static ACPI_STATUS +AcpiHwGpeEnableWrite ( + UINT8 EnableMask, + ACPI_GPE_REGISTER_INFO *GpeRegisterInfo); + /****************************************************************************** * @@ -128,13 +133,13 @@ AcpiHwLowSetGpe ( /* Set or clear just the bit that corresponds to this GPE */ RegisterBit = AcpiHwGetGpeRegisterBit (GpeEventInfo); - switch (Action) + switch (Action & ~ACPI_GPE_SAVE_MASK) { case ACPI_GPE_CONDITIONAL_ENABLE: - /* Only enable if the EnableForRun bit is set */ + /* Only enable if the corresponding EnableMask bit is set */ - if (!(RegisterBit & GpeRegisterInfo->EnableForRun)) + if (!(RegisterBit & GpeRegisterInfo->EnableMask)) { return (AE_BAD_PARAMETER); } @@ -160,6 +165,10 @@ AcpiHwLowSetGpe ( /* Write the updated enable mask */ Status = AcpiHwWrite (EnableMask, &GpeRegisterInfo->EnableAddress); + if (ACPI_SUCCESS (Status) && (Action & ACPI_GPE_SAVE_MASK)) + { + GpeRegisterInfo->EnableMask = (UINT8) EnableMask; + } return (Status); } @@ -243,7 +252,7 @@ AcpiHwGetGpeStatus ( /* GPE currently handled? */ - if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) != + if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) != ACPI_GPE_DISPATCH_NONE) { LocalEventStatus |= ACPI_EVENT_FLAG_HAS_HANDLER; @@ -293,6 +302,37 @@ AcpiHwGetGpeStatus ( /****************************************************************************** * + * FUNCTION: AcpiHwGpeEnableWrite + * + * PARAMETERS: EnableMask - Bit mask to write to the GPE register + * GpeRegisterInfo - Gpe Register info + * + * RETURN: Status + * + * DESCRIPTION: Write the enable mask byte to the given GPE register. + * + ******************************************************************************/ + +static ACPI_STATUS +AcpiHwGpeEnableWrite ( + UINT8 EnableMask, + ACPI_GPE_REGISTER_INFO *GpeRegisterInfo) +{ + ACPI_STATUS Status; + + + Status = AcpiHwWrite (EnableMask, &GpeRegisterInfo->EnableAddress); + if (ACPI_SUCCESS (Status)) + { + GpeRegisterInfo->EnableMask = EnableMask; + } + + return (Status); +} + + +/****************************************************************************** + * * FUNCTION: AcpiHwDisableGpeBlock * * PARAMETERS: GpeXruptInfo - GPE Interrupt info @@ -320,7 +360,7 @@ AcpiHwDisableGpeBlock ( { /* Disable all GPEs in this register */ - Status = AcpiHwWrite (0x00, &GpeBlock->RegisterInfo[i].EnableAddress); + Status = AcpiHwGpeEnableWrite (0x00, &GpeBlock->RegisterInfo[i]); if (ACPI_FAILURE (Status)) { return (Status); @@ -393,6 +433,7 @@ AcpiHwEnableRuntimeGpeBlock ( { UINT32 i; ACPI_STATUS Status; + ACPI_GPE_REGISTER_INFO *GpeRegisterInfo; /* NOTE: assumes that all GPEs are currently disabled */ @@ -401,15 +442,16 @@ AcpiHwEnableRuntimeGpeBlock ( for (i = 0; i < GpeBlock->RegisterCount; i++) { - if (!GpeBlock->RegisterInfo[i].EnableForRun) + GpeRegisterInfo = &GpeBlock->RegisterInfo[i]; + if (!GpeRegisterInfo->EnableForRun) { continue; } /* Enable all "runtime" GPEs in this register */ - Status = AcpiHwWrite (GpeBlock->RegisterInfo[i].EnableForRun, - &GpeBlock->RegisterInfo[i].EnableAddress); + Status = AcpiHwGpeEnableWrite (GpeRegisterInfo->EnableForRun, + GpeRegisterInfo); if (ACPI_FAILURE (Status)) { return (Status); @@ -442,21 +484,21 @@ AcpiHwEnableWakeupGpeBlock ( { UINT32 i; ACPI_STATUS Status; + ACPI_GPE_REGISTER_INFO *GpeRegisterInfo; /* Examine each GPE Register within the block */ for (i = 0; i < GpeBlock->RegisterCount; i++) { - if (!GpeBlock->RegisterInfo[i].EnableForWake) - { - continue; - } - - /* Enable all "wake" GPEs in this register */ - - Status = AcpiHwWrite (GpeBlock->RegisterInfo[i].EnableForWake, - &GpeBlock->RegisterInfo[i].EnableAddress); + GpeRegisterInfo = &GpeBlock->RegisterInfo[i]; + + /* + * Enable all "wake" GPEs in this register and disable the + * remaining ones. + */ + Status = AcpiHwGpeEnableWrite (GpeRegisterInfo->EnableForWake, + GpeRegisterInfo); if (ACPI_FAILURE (Status)) { return (Status); diff --git a/source/components/hardware/hwpci.c b/source/components/hardware/hwpci.c index 34720c1..617d5ad 100644 --- a/source/components/hardware/hwpci.c +++ b/source/components/hardware/hwpci.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwregs.c b/source/components/hardware/hwregs.c index b22775f..60e3fef 100644 --- a/source/components/hardware/hwregs.c +++ b/source/components/hardware/hwregs.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwsleep.c b/source/components/hardware/hwsleep.c index 1e16297..f56110e 100644 --- a/source/components/hardware/hwsleep.c +++ b/source/components/hardware/hwsleep.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwtimer.c b/source/components/hardware/hwtimer.c index f173fca..6f1f8f7 100644 --- a/source/components/hardware/hwtimer.c +++ b/source/components/hardware/hwtimer.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwvalid.c b/source/components/hardware/hwvalid.c index f630654..e694b70 100644 --- a/source/components/hardware/hwvalid.c +++ b/source/components/hardware/hwvalid.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwxface.c b/source/components/hardware/hwxface.c index 061f202..7a8b5a2 100644 --- a/source/components/hardware/hwxface.c +++ b/source/components/hardware/hwxface.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/hardware/hwxfsleep.c b/source/components/hardware/hwxfsleep.c index 8c46eed..5576ede 100644 --- a/source/components/hardware/hwxfsleep.c +++ b/source/components/hardware/hwxfsleep.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsaccess.c b/source/components/namespace/nsaccess.c index bc03087..9729cd6 100644 --- a/source/components/namespace/nsaccess.c +++ b/source/components/namespace/nsaccess.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsalloc.c b/source/components/namespace/nsalloc.c index 5391753..1939cac 100644 --- a/source/components/namespace/nsalloc.c +++ b/source/components/namespace/nsalloc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsarguments.c b/source/components/namespace/nsarguments.c index eff527b..93cf7a0 100644 --- a/source/components/namespace/nsarguments.c +++ b/source/components/namespace/nsarguments.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsconvert.c b/source/components/namespace/nsconvert.c index 5403f66..6fa67fa 100644 --- a/source/components/namespace/nsconvert.c +++ b/source/components/namespace/nsconvert.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsdump.c b/source/components/namespace/nsdump.c index e664c2d..5f9f2be 100644 --- a/source/components/namespace/nsdump.c +++ b/source/components/namespace/nsdump.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsdumpdv.c b/source/components/namespace/nsdumpdv.c index f7d6408..0bfc029 100644 --- a/source/components/namespace/nsdumpdv.c +++ b/source/components/namespace/nsdumpdv.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nseval.c b/source/components/namespace/nseval.c index 06550ac..e5a0eb8 100644 --- a/source/components/namespace/nseval.c +++ b/source/components/namespace/nseval.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsinit.c b/source/components/namespace/nsinit.c index 150bcc0..d68ee20 100644 --- a/source/components/namespace/nsinit.c +++ b/source/components/namespace/nsinit.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsload.c b/source/components/namespace/nsload.c index a590c94..b6f85ba 100644 --- a/source/components/namespace/nsload.c +++ b/source/components/namespace/nsload.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsnames.c b/source/components/namespace/nsnames.c index e7e68b0..22e697b 100644 --- a/source/components/namespace/nsnames.c +++ b/source/components/namespace/nsnames.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsobject.c b/source/components/namespace/nsobject.c index 74628b9..a72fc93 100644 --- a/source/components/namespace/nsobject.c +++ b/source/components/namespace/nsobject.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsparse.c b/source/components/namespace/nsparse.c index 9c2845d..fec9c51 100644 --- a/source/components/namespace/nsparse.c +++ b/source/components/namespace/nsparse.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nspredef.c b/source/components/namespace/nspredef.c index 2059f93..1b3b082 100644 --- a/source/components/namespace/nspredef.c +++ b/source/components/namespace/nspredef.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsprepkg.c b/source/components/namespace/nsprepkg.c index 6cc3c70..c6527cc 100644 --- a/source/components/namespace/nsprepkg.c +++ b/source/components/namespace/nsprepkg.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsrepair.c b/source/components/namespace/nsrepair.c index 59e1704..df0e1e4 100644 --- a/source/components/namespace/nsrepair.c +++ b/source/components/namespace/nsrepair.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsrepair2.c b/source/components/namespace/nsrepair2.c index 7dd9649..60b895b 100644 --- a/source/components/namespace/nsrepair2.c +++ b/source/components/namespace/nsrepair2.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nssearch.c b/source/components/namespace/nssearch.c index 711fda3..46794b6 100644 --- a/source/components/namespace/nssearch.c +++ b/source/components/namespace/nssearch.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsutils.c b/source/components/namespace/nsutils.c index a5aff61..becdf33 100644 --- a/source/components/namespace/nsutils.c +++ b/source/components/namespace/nsutils.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nswalk.c b/source/components/namespace/nswalk.c index 1db8355..c1cec43 100644 --- a/source/components/namespace/nswalk.c +++ b/source/components/namespace/nswalk.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsxfeval.c b/source/components/namespace/nsxfeval.c index 907af28..547ed4d 100644 --- a/source/components/namespace/nsxfeval.c +++ b/source/components/namespace/nsxfeval.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsxfname.c b/source/components/namespace/nsxfname.c index 9d06fe6..3f6c74d 100644 --- a/source/components/namespace/nsxfname.c +++ b/source/components/namespace/nsxfname.c @@ -6,7 +6,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/namespace/nsxfobj.c b/source/components/namespace/nsxfobj.c index aa7a604..6fed2b8 100644 --- a/source/components/namespace/nsxfobj.c +++ b/source/components/namespace/nsxfobj.c @@ -6,7 +6,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psargs.c b/source/components/parser/psargs.c index 17e99fa..ae68073 100644 --- a/source/components/parser/psargs.c +++ b/source/components/parser/psargs.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psloop.c b/source/components/parser/psloop.c index 5d5dab4..4e1eb29 100644 --- a/source/components/parser/psloop.c +++ b/source/components/parser/psloop.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psobject.c b/source/components/parser/psobject.c index 2f69a14..ed65495 100644 --- a/source/components/parser/psobject.c +++ b/source/components/parser/psobject.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psopcode.c b/source/components/parser/psopcode.c index 60758e4..d2ca1cc 100644 --- a/source/components/parser/psopcode.c +++ b/source/components/parser/psopcode.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psopinfo.c b/source/components/parser/psopinfo.c index d419aa0..c8c22ff 100644 --- a/source/components/parser/psopinfo.c +++ b/source/components/parser/psopinfo.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psparse.c b/source/components/parser/psparse.c index 31899bd..39520db 100644 --- a/source/components/parser/psparse.c +++ b/source/components/parser/psparse.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psscope.c b/source/components/parser/psscope.c index d0068b7..09fbb10 100644 --- a/source/components/parser/psscope.c +++ b/source/components/parser/psscope.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/pstree.c b/source/components/parser/pstree.c index f53a0a0..6044b00 100644 --- a/source/components/parser/pstree.c +++ b/source/components/parser/pstree.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psutils.c b/source/components/parser/psutils.c index f6d8c59..e95d162 100644 --- a/source/components/parser/psutils.c +++ b/source/components/parser/psutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/pswalk.c b/source/components/parser/pswalk.c index 026205d..2cc2fb5 100644 --- a/source/components/parser/pswalk.c +++ b/source/components/parser/pswalk.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/parser/psxface.c b/source/components/parser/psxface.c index 6e0502d..85eea33 100644 --- a/source/components/parser/psxface.c +++ b/source/components/parser/psxface.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsaddr.c b/source/components/resources/rsaddr.c index f80a4ad..b81b75c 100644 --- a/source/components/resources/rsaddr.c +++ b/source/components/resources/rsaddr.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rscalc.c b/source/components/resources/rscalc.c index 9bcd46f..d41dfee 100644 --- a/source/components/resources/rscalc.c +++ b/source/components/resources/rscalc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rscreate.c b/source/components/resources/rscreate.c index dd40ea3..5b47e7e 100644 --- a/source/components/resources/rscreate.c +++ b/source/components/resources/rscreate.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsdump.c b/source/components/resources/rsdump.c index 9a5d41c..ac3bd4c 100644 --- a/source/components/resources/rsdump.c +++ b/source/components/resources/rsdump.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsdumpinfo.c b/source/components/resources/rsdumpinfo.c index 405a89b..ad6a275 100644 --- a/source/components/resources/rsdumpinfo.c +++ b/source/components/resources/rsdumpinfo.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsinfo.c b/source/components/resources/rsinfo.c index b0c4a78..ae54fa6 100644 --- a/source/components/resources/rsinfo.c +++ b/source/components/resources/rsinfo.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsio.c b/source/components/resources/rsio.c index a350635..e03dd64 100644 --- a/source/components/resources/rsio.c +++ b/source/components/resources/rsio.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsirq.c b/source/components/resources/rsirq.c index 481a653..bcc7d5e 100644 --- a/source/components/resources/rsirq.c +++ b/source/components/resources/rsirq.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rslist.c b/source/components/resources/rslist.c index 2e24a6d..db910ac 100644 --- a/source/components/resources/rslist.c +++ b/source/components/resources/rslist.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsmemory.c b/source/components/resources/rsmemory.c index d1b3512..be05e3a 100644 --- a/source/components/resources/rsmemory.c +++ b/source/components/resources/rsmemory.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsmisc.c b/source/components/resources/rsmisc.c index d9bd73b..82df562 100644 --- a/source/components/resources/rsmisc.c +++ b/source/components/resources/rsmisc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsserial.c b/source/components/resources/rsserial.c index 08c9a07..68e92cc 100644 --- a/source/components/resources/rsserial.c +++ b/source/components/resources/rsserial.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsutils.c b/source/components/resources/rsutils.c index e99fca0..6840794 100644 --- a/source/components/resources/rsutils.c +++ b/source/components/resources/rsutils.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/resources/rsxface.c b/source/components/resources/rsxface.c index e3d70e2..f4c3a24 100644 --- a/source/components/resources/rsxface.c +++ b/source/components/resources/rsxface.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbdata.c b/source/components/tables/tbdata.c index 7ee5b00..c8b8a79 100644 --- a/source/components/tables/tbdata.c +++ b/source/components/tables/tbdata.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbfadt.c b/source/components/tables/tbfadt.c index 474dd4b..6d57e80 100644 --- a/source/components/tables/tbfadt.c +++ b/source/components/tables/tbfadt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbfind.c b/source/components/tables/tbfind.c index 12f3b26..13ed982 100644 --- a/source/components/tables/tbfind.c +++ b/source/components/tables/tbfind.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbinstal.c b/source/components/tables/tbinstal.c index 10a79c3..6def254 100644 --- a/source/components/tables/tbinstal.c +++ b/source/components/tables/tbinstal.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbprint.c b/source/components/tables/tbprint.c index be5dcab..d214fd7 100644 --- a/source/components/tables/tbprint.c +++ b/source/components/tables/tbprint.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbutils.c b/source/components/tables/tbutils.c index 628b2b7..7159c60 100644 --- a/source/components/tables/tbutils.c +++ b/source/components/tables/tbutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbxface.c b/source/components/tables/tbxface.c index 870b4bb..7b4e7f0 100644 --- a/source/components/tables/tbxface.c +++ b/source/components/tables/tbxface.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbxfload.c b/source/components/tables/tbxfload.c index bd8bafa..3473df8 100644 --- a/source/components/tables/tbxfload.c +++ b/source/components/tables/tbxfload.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/tables/tbxfroot.c b/source/components/tables/tbxfroot.c index 9b91570..01a8e4a 100644 --- a/source/components/tables/tbxfroot.c +++ b/source/components/tables/tbxfroot.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utaddress.c b/source/components/utilities/utaddress.c index 05b011c..0a7bafb 100644 --- a/source/components/utilities/utaddress.c +++ b/source/components/utilities/utaddress.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utalloc.c b/source/components/utilities/utalloc.c index 0a58bca..bb4194d 100644 --- a/source/components/utilities/utalloc.c +++ b/source/components/utilities/utalloc.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utbuffer.c b/source/components/utilities/utbuffer.c index 95f005a..e677cf1 100644 --- a/source/components/utilities/utbuffer.c +++ b/source/components/utilities/utbuffer.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utcache.c b/source/components/utilities/utcache.c index 182868f..c2211cc 100644 --- a/source/components/utilities/utcache.c +++ b/source/components/utilities/utcache.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utclib.c b/source/components/utilities/utclib.c index 9d47d3a..8cc04f2 100644 --- a/source/components/utilities/utclib.c +++ b/source/components/utilities/utclib.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utcopy.c b/source/components/utilities/utcopy.c index eae39eb..932faa3 100644 --- a/source/components/utilities/utcopy.c +++ b/source/components/utilities/utcopy.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utdebug.c b/source/components/utilities/utdebug.c index 948dacc..2aefacb 100644 --- a/source/components/utilities/utdebug.c +++ b/source/components/utilities/utdebug.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utdecode.c b/source/components/utilities/utdecode.c index d696480..849a1bc 100644 --- a/source/components/utilities/utdecode.c +++ b/source/components/utilities/utdecode.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utdelete.c b/source/components/utilities/utdelete.c index bd30cac..264b45d 100644 --- a/source/components/utilities/utdelete.c +++ b/source/components/utilities/utdelete.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/uterror.c b/source/components/utilities/uterror.c index 3f12350..b5f532f 100644 --- a/source/components/utilities/uterror.c +++ b/source/components/utilities/uterror.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/uteval.c b/source/components/utilities/uteval.c index affbdd6..542c691 100644 --- a/source/components/utilities/uteval.c +++ b/source/components/utilities/uteval.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utexcep.c b/source/components/utilities/utexcep.c index 5092512..5837a65 100644 --- a/source/components/utilities/utexcep.c +++ b/source/components/utilities/utexcep.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utfileio.c b/source/components/utilities/utfileio.c index c6ee29c..39ef3e6 100644 --- a/source/components/utilities/utfileio.c +++ b/source/components/utilities/utfileio.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utglobal.c b/source/components/utilities/utglobal.c index f55c158..207faf8 100644 --- a/source/components/utilities/utglobal.c +++ b/source/components/utilities/utglobal.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/uthex.c b/source/components/utilities/uthex.c index d2e147d..4dcf1cf 100644 --- a/source/components/utilities/uthex.c +++ b/source/components/utilities/uthex.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utids.c b/source/components/utilities/utids.c index b39d676..2affb21 100644 --- a/source/components/utilities/utids.c +++ b/source/components/utilities/utids.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utinit.c b/source/components/utilities/utinit.c index 14336d4..d69599d 100644 --- a/source/components/utilities/utinit.c +++ b/source/components/utilities/utinit.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utlock.c b/source/components/utilities/utlock.c index 0c65262..829456c 100644 --- a/source/components/utilities/utlock.c +++ b/source/components/utilities/utlock.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utmath.c b/source/components/utilities/utmath.c index af20e53..0f92075 100644 --- a/source/components/utilities/utmath.c +++ b/source/components/utilities/utmath.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utmisc.c b/source/components/utilities/utmisc.c index 998c041..08b72bc 100644 --- a/source/components/utilities/utmisc.c +++ b/source/components/utilities/utmisc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utmutex.c b/source/components/utilities/utmutex.c index 586391c..4fe866e 100644 --- a/source/components/utilities/utmutex.c +++ b/source/components/utilities/utmutex.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utobject.c b/source/components/utilities/utobject.c index 84e0546..62758c4 100644 --- a/source/components/utilities/utobject.c +++ b/source/components/utilities/utobject.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utosi.c b/source/components/utilities/utosi.c index 93ebc73..43a3f49 100644 --- a/source/components/utilities/utosi.c +++ b/source/components/utilities/utosi.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utownerid.c b/source/components/utilities/utownerid.c index c4681d2..a130fb7 100644 --- a/source/components/utilities/utownerid.c +++ b/source/components/utilities/utownerid.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utpredef.c b/source/components/utilities/utpredef.c index fd7d2fe..205fa45 100644 --- a/source/components/utilities/utpredef.c +++ b/source/components/utilities/utpredef.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utprint.c b/source/components/utilities/utprint.c index 21f7034..4a0d98a 100644 --- a/source/components/utilities/utprint.c +++ b/source/components/utilities/utprint.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utresrc.c b/source/components/utilities/utresrc.c index f6fc8b9..df3c73e 100644 --- a/source/components/utilities/utresrc.c +++ b/source/components/utilities/utresrc.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utstate.c b/source/components/utilities/utstate.c index bb17801..ed75a21 100644 --- a/source/components/utilities/utstate.c +++ b/source/components/utilities/utstate.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utstring.c b/source/components/utilities/utstring.c index 225cf86..035d5ba 100644 --- a/source/components/utilities/utstring.c +++ b/source/components/utilities/utstring.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/uttrack.c b/source/components/utilities/uttrack.c index 80ecc32..44ef0ed 100644 --- a/source/components/utilities/uttrack.c +++ b/source/components/utilities/uttrack.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utuuid.c b/source/components/utilities/utuuid.c index f97fc8e..1572f5f 100644 --- a/source/components/utilities/utuuid.c +++ b/source/components/utilities/utuuid.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utxface.c b/source/components/utilities/utxface.c index 671622b..4266dce 100644 --- a/source/components/utilities/utxface.c +++ b/source/components/utilities/utxface.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utxferror.c b/source/components/utilities/utxferror.c index db6535f..05b7652 100644 --- a/source/components/utilities/utxferror.c +++ b/source/components/utilities/utxferror.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utxfinit.c b/source/components/utilities/utxfinit.c index 2dc5d20..cd43870 100644 --- a/source/components/utilities/utxfinit.c +++ b/source/components/utilities/utxfinit.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/components/utilities/utxfmutex.c b/source/components/utilities/utxfmutex.c index ac371d4..cf27a02 100644 --- a/source/components/utilities/utxfmutex.c +++ b/source/components/utilities/utxfmutex.c @@ -5,7 +5,7 @@ ******************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acapps.h b/source/include/acapps.h index f754789..d699a1f 100644 --- a/source/include/acapps.h +++ b/source/include/acapps.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, 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 - 2014 Intel Corporation" +#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2015 Intel Corporation" #if ACPI_MACHINE_WIDTH == 64 #define ACPI_WIDTH "-64" diff --git a/source/include/acbuffer.h b/source/include/acbuffer.h index 1adb4b1..37f4170 100644 --- a/source/include/acbuffer.h +++ b/source/include/acbuffer.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/accommon.h b/source/include/accommon.h index 7b71155..e10471e 100644 --- a/source/include/accommon.h +++ b/source/include/accommon.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acconfig.h b/source/include/acconfig.h index 69242ee..46dbc31 100644 --- a/source/include/acconfig.h +++ b/source/include/acconfig.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acdebug.h b/source/include/acdebug.h index a856257..f630575 100644 --- a/source/include/acdebug.h +++ b/source/include/acdebug.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acdisasm.h b/source/include/acdisasm.h index f4fa051..7c41e34 100644 --- a/source/include/acdisasm.h +++ b/source/include/acdisasm.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acdispat.h b/source/include/acdispat.h index c4abebb..9364fe3 100644 --- a/source/include/acdispat.h +++ b/source/include/acdispat.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acevents.h b/source/include/acevents.h index 43c1d7c..2ae0aca 100644 --- a/source/include/acevents.h +++ b/source/include/acevents.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -197,10 +197,6 @@ AcpiEvWalkGpeList ( ACPI_GPE_CALLBACK GpeWalkCallback, void *Context); -BOOLEAN -AcpiEvValidGpeEvent ( - ACPI_GPE_EVENT_INFO *GpeEventInfo); - ACPI_STATUS AcpiEvGetGpeDevice ( ACPI_GPE_XRUPT_INFO *GpeXruptInfo, diff --git a/source/include/acexcep.h b/source/include/acexcep.h index aab6941..7a3fdcb 100644 --- a/source/include/acexcep.h +++ b/source/include/acexcep.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acglobal.h b/source/include/acglobal.h index d14d7ba..9b6e936 100644 --- a/source/include/acglobal.h +++ b/source/include/acglobal.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/achware.h b/source/include/achware.h index 1b13318..6ab28b6 100644 --- a/source/include/achware.h +++ b/source/include/achware.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acinterp.h b/source/include/acinterp.h index b778640..66463d6 100644 --- a/source/include/acinterp.h +++ b/source/include/acinterp.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/aclocal.h b/source/include/aclocal.h index e5285ec..5f9b0f3 100644 --- a/source/include/aclocal.h +++ b/source/include/aclocal.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -520,6 +520,7 @@ typedef struct acpi_gpe_register_info UINT16 BaseGpeNumber; /* Base GPE number for this register */ UINT8 EnableForWake; /* GPEs to keep enabled when sleeping */ UINT8 EnableForRun; /* GPEs to keep enabled when running */ + UINT8 EnableMask; /* Current mask of enabled GPEs */ } ACPI_GPE_REGISTER_INFO; diff --git a/source/include/acmacros.h b/source/include/acmacros.h index 19a3e8e..b23d175 100644 --- a/source/include/acmacros.h +++ b/source/include/acmacros.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acnames.h b/source/include/acnames.h index 3297a73..6bb6bbf 100644 --- a/source/include/acnames.h +++ b/source/include/acnames.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acnamesp.h b/source/include/acnamesp.h index 9fd3841..07e76b5 100644 --- a/source/include/acnamesp.h +++ b/source/include/acnamesp.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acobject.h b/source/include/acobject.h index c08c827..b7b624b 100644 --- a/source/include/acobject.h +++ b/source/include/acobject.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acopcode.h b/source/include/acopcode.h index b968fc6..f4ba55d 100644 --- a/source/include/acopcode.h +++ b/source/include/acopcode.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acoutput.h b/source/include/acoutput.h index 8f054ae..ab07809 100644 --- a/source/include/acoutput.h +++ b/source/include/acoutput.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acparser.h b/source/include/acparser.h index 8d8adba..4ad2ec2 100644 --- a/source/include/acparser.h +++ b/source/include/acparser.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acpi.h b/source/include/acpi.h index fb1f565..c11be91 100644 --- a/source/include/acpi.h +++ b/source/include/acpi.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acpiosxf.h b/source/include/acpiosxf.h index 3888b48..6062fda 100644 --- a/source/include/acpiosxf.h +++ b/source/include/acpiosxf.h @@ -7,7 +7,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acpixf.h b/source/include/acpixf.h index 73a05f9..5769a76 100644 --- a/source/include/acpixf.h +++ b/source/include/acpixf.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -46,7 +46,7 @@ /* Current ACPICA subsystem version in YYYYMMDD format */ -#define ACPI_CA_VERSION 0x20141107 +#define ACPI_CA_VERSION 0x20150204 #include "acconfig.h" #include "actypes.h" @@ -704,6 +704,15 @@ AcpiInstallGpeHandler ( ACPI_HW_DEPENDENT_RETURN_STATUS ( ACPI_STATUS +AcpiInstallGpeRawHandler ( + ACPI_HANDLE GpeDevice, + UINT32 GpeNumber, + UINT32 Type, + ACPI_GPE_HANDLER Address, + void *Context)) + +ACPI_HW_DEPENDENT_RETURN_STATUS ( +ACPI_STATUS AcpiRemoveGpeHandler ( ACPI_HANDLE GpeDevice, UINT32 GpeNumber, @@ -888,6 +897,11 @@ AcpiEnableAllRuntimeGpes ( ACPI_HW_DEPENDENT_RETURN_STATUS ( ACPI_STATUS +AcpiEnableAllWakeupGpes ( + void)) + +ACPI_HW_DEPENDENT_RETURN_STATUS ( +ACPI_STATUS AcpiGetGpeDevice ( UINT32 GpeIndex, ACPI_HANDLE *GpeDevice)) diff --git a/source/include/acpredef.h b/source/include/acpredef.h index c41ab03..c832f51 100644 --- a/source/include/acpredef.h +++ b/source/include/acpredef.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acresrc.h b/source/include/acresrc.h index f761d3f..61bedc4 100644 --- a/source/include/acresrc.h +++ b/source/include/acresrc.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acrestyp.h b/source/include/acrestyp.h index b0412aa..971dd72 100644 --- a/source/include/acrestyp.h +++ b/source/include/acrestyp.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/acstruct.h b/source/include/acstruct.h index 5a0baf4..1de614f 100644 --- a/source/include/acstruct.h +++ b/source/include/acstruct.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actables.h b/source/include/actables.h index 2e30658..bc1574d 100644 --- a/source/include/actables.h +++ b/source/include/actables.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actbl.h b/source/include/actbl.h index 6ef64e1..866e76b 100644 --- a/source/include/actbl.h +++ b/source/include/actbl.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actbl1.h b/source/include/actbl1.h index a781056..66b3d07 100644 --- a/source/include/actbl1.h +++ b/source/include/actbl1.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actbl2.h b/source/include/actbl2.h index a6f2f20..2251af8 100644 --- a/source/include/actbl2.h +++ b/source/include/actbl2.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actbl3.h b/source/include/actbl3.h index 2f98b37..f7ae670 100644 --- a/source/include/actbl3.h +++ b/source/include/actbl3.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/actypes.h b/source/include/actypes.h index 0444f5e..c6f2170 100644 --- a/source/include/actypes.h +++ b/source/include/actypes.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -743,11 +743,15 @@ typedef UINT32 ACPI_EVENT_STATUS; #define ACPI_GPE_ENABLE 0 #define ACPI_GPE_DISABLE 1 #define ACPI_GPE_CONDITIONAL_ENABLE 2 +#define ACPI_GPE_SAVE_MASK 4 + +#define ACPI_GPE_ENABLE_SAVE (ACPI_GPE_ENABLE | ACPI_GPE_SAVE_MASK) +#define ACPI_GPE_DISABLE_SAVE (ACPI_GPE_DISABLE | ACPI_GPE_SAVE_MASK) /* * GPE info flags - Per GPE * +-------+-+-+---+ - * | 7:4 |3|2|1:0| + * | 7:5 |4|3|2:0| * +-------+-+-+---+ * | | | | * | | | +-- Type of dispatch:to method, handler, notify, or none @@ -759,13 +763,15 @@ typedef UINT32 ACPI_EVENT_STATUS; #define ACPI_GPE_DISPATCH_METHOD (UINT8) 0x01 #define ACPI_GPE_DISPATCH_HANDLER (UINT8) 0x02 #define ACPI_GPE_DISPATCH_NOTIFY (UINT8) 0x03 -#define ACPI_GPE_DISPATCH_MASK (UINT8) 0x03 +#define ACPI_GPE_DISPATCH_RAW_HANDLER (UINT8) 0x04 +#define ACPI_GPE_DISPATCH_MASK (UINT8) 0x07 +#define ACPI_GPE_DISPATCH_TYPE(flags) ((UINT8) ((flags) & ACPI_GPE_DISPATCH_MASK)) -#define ACPI_GPE_LEVEL_TRIGGERED (UINT8) 0x04 +#define ACPI_GPE_LEVEL_TRIGGERED (UINT8) 0x08 #define ACPI_GPE_EDGE_TRIGGERED (UINT8) 0x00 -#define ACPI_GPE_XRUPT_TYPE_MASK (UINT8) 0x04 +#define ACPI_GPE_XRUPT_TYPE_MASK (UINT8) 0x08 -#define ACPI_GPE_CAN_WAKE (UINT8) 0x08 +#define ACPI_GPE_CAN_WAKE (UINT8) 0x10 /* * Flags for GPE and Lock interfaces diff --git a/source/include/acutils.h b/source/include/acutils.h index e5656c4..b302dbe 100644 --- a/source/include/acutils.h +++ b/source/include/acutils.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/amlcode.h b/source/include/amlcode.h index bc8c0b0..03530b9 100644 --- a/source/include/amlcode.h +++ b/source/include/amlcode.h @@ -7,7 +7,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/amlresrc.h b/source/include/amlresrc.h index cd8b3b6..b38028e 100644 --- a/source/include/amlresrc.h +++ b/source/include/amlresrc.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/accygwin.h b/source/include/platform/accygwin.h index 09581c4..3fbee37 100644 --- a/source/include/platform/accygwin.h +++ b/source/include/platform/accygwin.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acefi.h b/source/include/platform/acefi.h index cc24fbb..ae39dc7 100644 --- a/source/include/platform/acefi.h +++ b/source/include/platform/acefi.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acenv.h b/source/include/platform/acenv.h index b7444f0..8319714 100644 --- a/source/include/platform/acenv.h +++ b/source/include/platform/acenv.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acenvex.h b/source/include/platform/acenvex.h index a1de87f..d08d03b 100644 --- a/source/include/platform/acenvex.h +++ b/source/include/platform/acenvex.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acfreebsd.h b/source/include/platform/acfreebsd.h index abf02cc..ee938fc 100644 --- a/source/include/platform/acfreebsd.h +++ b/source/include/platform/acfreebsd.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acgcc.h b/source/include/platform/acgcc.h index 23db324..2a27445 100644 --- a/source/include/platform/acgcc.h +++ b/source/include/platform/acgcc.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/achaiku.h b/source/include/platform/achaiku.h index 931ebf9..07e1795 100644 --- a/source/include/platform/achaiku.h +++ b/source/include/platform/achaiku.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acintel.h b/source/include/platform/acintel.h index a36c5a4..bc7d8dc 100644 --- a/source/include/platform/acintel.h +++ b/source/include/platform/acintel.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/aclinux.h b/source/include/platform/aclinux.h index a56a513..3a91691 100644 --- a/source/include/platform/aclinux.h +++ b/source/include/platform/aclinux.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/aclinuxex.h b/source/include/platform/aclinuxex.h index cc6d2ce..8672288 100644 --- a/source/include/platform/aclinuxex.h +++ b/source/include/platform/aclinuxex.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acmacosx.h b/source/include/platform/acmacosx.h index d0737da..b02c6d6 100644 --- a/source/include/platform/acmacosx.h +++ b/source/include/platform/acmacosx.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acmsvc.h b/source/include/platform/acmsvc.h index 845a319..59e0b2d 100644 --- a/source/include/platform/acmsvc.h +++ b/source/include/platform/acmsvc.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acnetbsd.h b/source/include/platform/acnetbsd.h index 5072342..8e64996 100644 --- a/source/include/platform/acnetbsd.h +++ b/source/include/platform/acnetbsd.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acos2.h b/source/include/platform/acos2.h index 50889e9..09fe3a5 100644 --- a/source/include/platform/acos2.h +++ b/source/include/platform/acos2.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acwin.h b/source/include/platform/acwin.h index f38d5d3..e45aa15 100644 --- a/source/include/platform/acwin.h +++ b/source/include/platform/acwin.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/include/platform/acwin64.h b/source/include/platform/acwin64.h index 5ac4a98..aa3e132 100644 --- a/source/include/platform/acwin64.h +++ b/source/include/platform/acwin64.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osefitbl.c b/source/os_specific/service_layers/osefitbl.c index 341f3dd..da9d4c6 100644 --- a/source/os_specific/service_layers/osefitbl.c +++ b/source/os_specific/service_layers/osefitbl.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osefixf.c b/source/os_specific/service_layers/osefixf.c index 4efbd5b..32e3dd3 100644 --- a/source/os_specific/service_layers/osefixf.c +++ b/source/os_specific/service_layers/osefixf.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osfreebsdtbl.c b/source/os_specific/service_layers/osfreebsdtbl.c index 14396e2..a0f1c4e 100644 --- a/source/os_specific/service_layers/osfreebsdtbl.c +++ b/source/os_specific/service_layers/osfreebsdtbl.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/oslibcfs.c b/source/os_specific/service_layers/oslibcfs.c index 606e3a9..a3aa5cf 100644 --- a/source/os_specific/service_layers/oslibcfs.c +++ b/source/os_specific/service_layers/oslibcfs.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/oslinuxtbl.c b/source/os_specific/service_layers/oslinuxtbl.c index aae9332..a2dbea3 100644 --- a/source/os_specific/service_layers/oslinuxtbl.c +++ b/source/os_specific/service_layers/oslinuxtbl.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osunixdir.c b/source/os_specific/service_layers/osunixdir.c index 835eee3..308f7fb 100644 --- a/source/os_specific/service_layers/osunixdir.c +++ b/source/os_specific/service_layers/osunixdir.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osunixmap.c b/source/os_specific/service_layers/osunixmap.c index 0549342..c4323ab 100644 --- a/source/os_specific/service_layers/osunixmap.c +++ b/source/os_specific/service_layers/osunixmap.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/osunixxf.c b/source/os_specific/service_layers/osunixxf.c index ca06206..8d16248 100644 --- a/source/os_specific/service_layers/osunixxf.c +++ b/source/os_specific/service_layers/osunixxf.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/oswindir.c b/source/os_specific/service_layers/oswindir.c index 713bc2a..18a2c7a 100644 --- a/source/os_specific/service_layers/oswindir.c +++ b/source/os_specific/service_layers/oswindir.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/oswintbl.c b/source/os_specific/service_layers/oswintbl.c index 7c8ec2b..fad2ac7 100644 --- a/source/os_specific/service_layers/oswintbl.c +++ b/source/os_specific/service_layers/oswintbl.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/os_specific/service_layers/oswinxf.c b/source/os_specific/service_layers/oswinxf.c index 5952807..816332a 100644 --- a/source/os_specific/service_layers/oswinxf.c +++ b/source/os_specific/service_layers/oswinxf.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpibin/abcompare.c b/source/tools/acpibin/abcompare.c index 84eb3c2..d27d487 100644 --- a/source/tools/acpibin/abcompare.c +++ b/source/tools/acpibin/abcompare.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpibin/abmain.c b/source/tools/acpibin/abmain.c index 9cfeb32..85f2045 100644 --- a/source/tools/acpibin/abmain.c +++ b/source/tools/acpibin/abmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpibin/acpibin.h b/source/tools/acpibin/acpibin.h index 7f93d43..2bfb13b 100644 --- a/source/tools/acpibin/acpibin.h +++ b/source/tools/acpibin/acpibin.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpidump/acpidump.h b/source/tools/acpidump/acpidump.h index 8ac08b3..c403734 100644 --- a/source/tools/acpidump/acpidump.h +++ b/source/tools/acpidump/acpidump.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpidump/apdump.c b/source/tools/acpidump/apdump.c index 6248a61..da4c599 100644 --- a/source/tools/acpidump/apdump.c +++ b/source/tools/acpidump/apdump.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpidump/apfiles.c b/source/tools/acpidump/apfiles.c index 6633ce9..1e51ed6 100644 --- a/source/tools/acpidump/apfiles.c +++ b/source/tools/acpidump/apfiles.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpidump/apmain.c b/source/tools/acpidump/apmain.c index ffd1a2a..682a0d5 100644 --- a/source/tools/acpidump/apmain.c +++ b/source/tools/acpidump/apmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aecommon.h b/source/tools/acpiexec/aecommon.h index 1025b4c..162bc3f 100644 --- a/source/tools/acpiexec/aecommon.h +++ b/source/tools/acpiexec/aecommon.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aeexec.c b/source/tools/acpiexec/aeexec.c index 4cad99b..7bfbcfa 100644 --- a/source/tools/acpiexec/aeexec.c +++ b/source/tools/acpiexec/aeexec.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aehandlers.c b/source/tools/acpiexec/aehandlers.c index 8ea9efa..17ef9dd 100644 --- a/source/tools/acpiexec/aehandlers.c +++ b/source/tools/acpiexec/aehandlers.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aeinitfile.c b/source/tools/acpiexec/aeinitfile.c index de36020..36463c5 100644 --- a/source/tools/acpiexec/aeinitfile.c +++ b/source/tools/acpiexec/aeinitfile.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aemain.c b/source/tools/acpiexec/aemain.c index 476539e..75ceaac 100644 --- a/source/tools/acpiexec/aemain.c +++ b/source/tools/acpiexec/aemain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aeregion.c b/source/tools/acpiexec/aeregion.c index 0cd893c..1e732b7 100644 --- a/source/tools/acpiexec/aeregion.c +++ b/source/tools/acpiexec/aeregion.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aetables.c b/source/tools/acpiexec/aetables.c index a9becc2..cb2c05b 100644 --- a/source/tools/acpiexec/aetables.c +++ b/source/tools/acpiexec/aetables.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpiexec/aetables.h b/source/tools/acpiexec/aetables.h index ef1132b..ed1649d 100644 --- a/source/tools/acpiexec/aetables.h +++ b/source/tools/acpiexec/aetables.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/acpihelp.h b/source/tools/acpihelp/acpihelp.h index 5e7a40f..83a10ea 100644 --- a/source/tools/acpihelp/acpihelp.h +++ b/source/tools/acpihelp/acpihelp.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/ahamlops.c b/source/tools/acpihelp/ahamlops.c index 9ac1351..c3344bf 100644 --- a/source/tools/acpihelp/ahamlops.c +++ b/source/tools/acpihelp/ahamlops.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/ahaslkey.c b/source/tools/acpihelp/ahaslkey.c index 574bb4b..5029094 100644 --- a/source/tools/acpihelp/ahaslkey.c +++ b/source/tools/acpihelp/ahaslkey.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/ahaslops.c b/source/tools/acpihelp/ahaslops.c index e111b7e..dca885a 100644 --- a/source/tools/acpihelp/ahaslops.c +++ b/source/tools/acpihelp/ahaslops.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/ahdecode.c b/source/tools/acpihelp/ahdecode.c index 3857071..bb0f861 100644 --- a/source/tools/acpihelp/ahdecode.c +++ b/source/tools/acpihelp/ahdecode.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpihelp/ahmain.c b/source/tools/acpihelp/ahmain.c index 4749e5b..7f65812 100644 --- a/source/tools/acpihelp/ahmain.c +++ b/source/tools/acpihelp/ahmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpinames/acpinames.h b/source/tools/acpinames/acpinames.h index 2c18c49..c38b2a0 100644 --- a/source/tools/acpinames/acpinames.h +++ b/source/tools/acpinames/acpinames.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpinames/anmain.c b/source/tools/acpinames/anmain.c index a7ea9a9..0ebfdf6 100644 --- a/source/tools/acpinames/anmain.c +++ b/source/tools/acpinames/anmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpinames/anstubs.c b/source/tools/acpinames/anstubs.c index 5933be3..7d2fdcc 100644 --- a/source/tools/acpinames/anstubs.c +++ b/source/tools/acpinames/anstubs.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpinames/antables.c b/source/tools/acpinames/antables.c index b91b425..35320e7 100644 --- a/source/tools/acpinames/antables.c +++ b/source/tools/acpinames/antables.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/acpisrc.h b/source/tools/acpisrc/acpisrc.h index 355657f..1eb21aa 100644 --- a/source/tools/acpisrc/acpisrc.h +++ b/source/tools/acpisrc/acpisrc.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/ascase.c b/source/tools/acpisrc/ascase.c index 2007acc..53e61ad 100644 --- a/source/tools/acpisrc/ascase.c +++ b/source/tools/acpisrc/ascase.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/asconvrt.c b/source/tools/acpisrc/asconvrt.c index 086f24e..fca19b8 100644 --- a/source/tools/acpisrc/asconvrt.c +++ b/source/tools/acpisrc/asconvrt.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -596,7 +596,7 @@ AsTrimWhitespace ( if (!strncmp (SubBuffer, "\n\n", 2)) { - SubBuffer = AsReplaceData (SubBuffer, 2, "\n", 1); + AsReplaceData (SubBuffer, 2, "\n", 1); AcpiOsPrintf ("Found multiple blank lines after copyright\n"); } diff --git a/source/tools/acpisrc/asfile.c b/source/tools/acpisrc/asfile.c index d3b72de..9c4ea7a 100644 --- a/source/tools/acpisrc/asfile.c +++ b/source/tools/acpisrc/asfile.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/asmain.c b/source/tools/acpisrc/asmain.c index 7c893e6..95f8bee 100644 --- a/source/tools/acpisrc/asmain.c +++ b/source/tools/acpisrc/asmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/asremove.c b/source/tools/acpisrc/asremove.c index 1d4fe5f..28299a4 100644 --- a/source/tools/acpisrc/asremove.c +++ b/source/tools/acpisrc/asremove.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpisrc/astable.c b/source/tools/acpisrc/astable.c index 758720e..3362427 100644 --- a/source/tools/acpisrc/astable.c +++ b/source/tools/acpisrc/astable.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -89,7 +89,7 @@ ACPI_STRING_TABLE StandardDataTypes[] = { char DualLicenseHeader[] = "/*\n" -" * Copyright (C) 2000 - 2014, Intel Corp.\n" +" * Copyright (C) 2000 - 2015, Intel Corp.\n" " * All rights reserved.\n" " *\n" " * Redistribution and use in source and binary forms, with or without\n" @@ -958,8 +958,8 @@ ACPI_CONVERSION_TABLE LicenseConversionTable = { ACPI_STRING_TABLE CustomReplacements[] = { - {"(c) 1999 - 2013", "(c) 1999 - 2014", REPLACE_WHOLE_WORD}, /* Main ACPICA source */ - {"(c) 2006 - 2013", "(c) 2006 - 2014", REPLACE_WHOLE_WORD}, /* Test suites */ + {"(c) 1999 - 2014", "(c) 1999 - 2015", REPLACE_WHOLE_WORD}, /* Main ACPICA source */ + {"(c) 2006 - 2014", "(c) 2006 - 2015", REPLACE_WHOLE_WORD}, /* Test suites */ #if 0 {"SUPPORT, ASSISTANCE", "SUPPORT, ASSISTANCE", REPLACE_WHOLE_WORD}, /* Fix intel header */ diff --git a/source/tools/acpisrc/asutils.c b/source/tools/acpisrc/asutils.c index 8dbf59f..f4ce703 100644 --- a/source/tools/acpisrc/asutils.c +++ b/source/tools/acpisrc/asutils.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpixtract/acpixtract.c b/source/tools/acpixtract/acpixtract.c index 747b912..d005919 100644 --- a/source/tools/acpixtract/acpixtract.c +++ b/source/tools/acpixtract/acpixtract.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/acpixtract/axmain.c b/source/tools/acpixtract/axmain.c index ec0bd61..905787a 100644 --- a/source/tools/acpixtract/axmain.c +++ b/source/tools/acpixtract/axmain.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/examples/examples.c b/source/tools/examples/examples.c index 3a6048d..ef9cbf0 100644 --- a/source/tools/examples/examples.c +++ b/source/tools/examples/examples.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/examples/examples.h b/source/tools/examples/examples.h index 79195ca..e2948b7 100644 --- a/source/tools/examples/examples.h +++ b/source/tools/examples/examples.h @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/examples/exstubs.c b/source/tools/examples/exstubs.c index 9d5b25b..17103c2 100644 --- a/source/tools/examples/exstubs.c +++ b/source/tools/examples/exstubs.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/source/tools/examples/extables.c b/source/tools/examples/extables.c index 18c1a85..054f62e 100644 --- a/source/tools/examples/extables.c +++ b/source/tools/examples/extables.c @@ -5,7 +5,7 @@ *****************************************************************************/ /* - * Copyright (C) 2000 - 2014, Intel Corp. + * Copyright (C) 2000 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/tests/aapits/atcommon.h b/tests/aapits/atcommon.h index b82bc79..e9897e6 100644 --- a/tests/aapits/atcommon.h +++ b/tests/aapits/atcommon.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atexec.c b/tests/aapits/atexec.c index a0ee9fa..ab39ddb 100644 --- a/tests/aapits/atexec.c +++ b/tests/aapits/atexec.c @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atfixedevent.c b/tests/aapits/atfixedevent.c index 1352e30..743f050 100644 --- a/tests/aapits/atfixedevent.c +++ b/tests/aapits/atfixedevent.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atfixedevent.h b/tests/aapits/atfixedevent.h index b8d6b02..cabf5eb 100644 --- a/tests/aapits/atfixedevent.h +++ b/tests/aapits/atfixedevent.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atgpe.c b/tests/aapits/atgpe.c index b22c1e0..7e69dc8 100644 --- a/tests/aapits/atgpe.c +++ b/tests/aapits/atgpe.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atgpe.h b/tests/aapits/atgpe.h index eee0288..ebde110 100644 --- a/tests/aapits/atgpe.h +++ b/tests/aapits/atgpe.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/athandlers.c b/tests/aapits/athandlers.c index 542c8fa..55fc4c2 100644 --- a/tests/aapits/athandlers.c +++ b/tests/aapits/athandlers.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/athandlers.h b/tests/aapits/athandlers.h index f65de9d..b25f027 100644 --- a/tests/aapits/athandlers.h +++ b/tests/aapits/athandlers.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/athardware.c b/tests/aapits/athardware.c index 611fa17..cdcd517 100644 --- a/tests/aapits/athardware.c +++ b/tests/aapits/athardware.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/athardware.h b/tests/aapits/athardware.h index 039f8e1..fafd536 100644 --- a/tests/aapits/athardware.h +++ b/tests/aapits/athardware.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atinit.c b/tests/aapits/atinit.c index 50844a5..0c74029 100644 --- a/tests/aapits/atinit.c +++ b/tests/aapits/atinit.c @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atinit.h b/tests/aapits/atinit.h index 4d75371..41b700c 100644 --- a/tests/aapits/atinit.h +++ b/tests/aapits/atinit.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atmain.c b/tests/aapits/atmain.c index 15ba843..12232c9 100644 --- a/tests/aapits/atmain.c +++ b/tests/aapits/atmain.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License @@ -140,7 +140,6 @@ AeDoObjectOverrides ( } - typedef struct at_test_case_descriptor { AT_TEST **Tests; diff --git a/tests/aapits/atmemory.c b/tests/aapits/atmemory.c index bc5b73c..b0cab6a 100644 --- a/tests/aapits/atmemory.c +++ b/tests/aapits/atmemory.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atmemory.h b/tests/aapits/atmemory.h index 1ae0e39..7d0fbe8 100644 --- a/tests/aapits/atmemory.h +++ b/tests/aapits/atmemory.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atnamespace.c b/tests/aapits/atnamespace.c index 8a4ec65..06dd66d 100644 --- a/tests/aapits/atnamespace.c +++ b/tests/aapits/atnamespace.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atnamespace.h b/tests/aapits/atnamespace.h index 1400ec2..77e93f9 100644 --- a/tests/aapits/atnamespace.h +++ b/tests/aapits/atnamespace.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atosxfctrl.c b/tests/aapits/atosxfctrl.c index 9680c4a..fe8b562 100644 --- a/tests/aapits/atosxfctrl.c +++ b/tests/aapits/atosxfctrl.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atosxfctrl.h b/tests/aapits/atosxfctrl.h index 3af4d51..66a361d 100644 --- a/tests/aapits/atosxfctrl.h +++ b/tests/aapits/atosxfctrl.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atosxfwrap.c b/tests/aapits/atosxfwrap.c index cecd339..7c5de39 100644 --- a/tests/aapits/atosxfwrap.c +++ b/tests/aapits/atosxfwrap.c @@ -10,7 +10,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atosxfwrap.h b/tests/aapits/atosxfwrap.h index 0b6b61d..27224d0 100644 --- a/tests/aapits/atosxfwrap.h +++ b/tests/aapits/atosxfwrap.h @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atresource.c b/tests/aapits/atresource.c index a570b73..b13dc67 100644 --- a/tests/aapits/atresource.c +++ b/tests/aapits/atresource.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/atresource.h b/tests/aapits/atresource.h index 841d9ff..44f1f30 100644 --- a/tests/aapits/atresource.h +++ b/tests/aapits/atresource.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/attable.c b/tests/aapits/attable.c index 2c555c0..702995c 100644 --- a/tests/aapits/attable.c +++ b/tests/aapits/attable.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/attable.h b/tests/aapits/attable.h index f2bf70a..b6dbda8 100644 --- a/tests/aapits/attable.h +++ b/tests/aapits/attable.h @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2015, Intel Corp. * All rights reserved. * * 2. License diff --git a/tests/aapits/osunixxf.c b/tests/aapits/osunixxf.c index f9d26f4..527675c 100644 --- a/tests/aapits/osunixxf.c +++ b/tests/aapits/osunixxf.c @@ -113,7 +113,6 @@ * *****************************************************************************/ - /* * These interfaces are required in order to compile the ASL compiler under * Linux. diff --git a/tests/aapits/oswinxf.c b/tests/aapits/oswinxf.c index ce9d4d2..e9ceac4 100644 --- a/tests/aapits/oswinxf.c +++ b/tests/aapits/oswinxf.c @@ -113,7 +113,6 @@ * *****************************************************************************/ - /* * These interfaces are required in order to link to the ACPI subsystem * parser. They are called during the execution of the parser, and all diff --git a/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl b/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl index 0cf3110..a24c45d 100644 --- a/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl +++ b/tests/aslts/doc/StoreCopyTestPrototype/gr1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl b/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl index 6965efc..f407d0f 100644 --- a/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl +++ b/tests/aslts/doc/StoreCopyTestPrototype/gr2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl b/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl index 096965b..c7931fe 100644 --- a/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl +++ b/tests/aslts/doc/StoreCopyTestPrototype/gr3.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl b/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl index cc06eae..f7592ad 100644 --- a/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl +++ b/tests/aslts/doc/StoreCopyTestPrototype/gr4.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl b/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl index 2bfaa4e..9e2ef9a 100644 --- a/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl +++ b/tests/aslts/doc/StoreCopyTestPrototype/gr5.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/MAIN.asl b/tests/aslts/src/compilation/collection/MAIN.asl index 81a8502..8d3009e 100644 --- a/tests/aslts/src/compilation/collection/MAIN.asl +++ b/tests/aslts/src/compilation/collection/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/arithmetic.asl b/tests/aslts/src/compilation/collection/arithmetic.asl index 04e303e..3a93ef8 100644 --- a/tests/aslts/src/compilation/collection/arithmetic.asl +++ b/tests/aslts/src/compilation/collection/arithmetic.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/bfield.asl b/tests/aslts/src/compilation/collection/bfield.asl index 1fd0162..7d50976 100644 --- a/tests/aslts/src/compilation/collection/bfield.asl +++ b/tests/aslts/src/compilation/collection/bfield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/constant.asl b/tests/aslts/src/compilation/collection/constant.asl index e04ad23..0a0b63f 100644 --- a/tests/aslts/src/compilation/collection/constant.asl +++ b/tests/aslts/src/compilation/collection/constant.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/control.asl b/tests/aslts/src/compilation/collection/control.asl index b02ac75..8ea3ddb 100644 --- a/tests/aslts/src/compilation/collection/control.asl +++ b/tests/aslts/src/compilation/collection/control.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/descriptor.asl b/tests/aslts/src/compilation/collection/descriptor.asl index 4b5d9f7..291e46f 100644 --- a/tests/aslts/src/compilation/collection/descriptor.asl +++ b/tests/aslts/src/compilation/collection/descriptor.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/extern.asl b/tests/aslts/src/compilation/collection/extern.asl index 65b46ad..1d25a85 100644 --- a/tests/aslts/src/compilation/collection/extern.asl +++ b/tests/aslts/src/compilation/collection/extern.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/local.asl b/tests/aslts/src/compilation/collection/local.asl index b933d37..af95bfc 100644 --- a/tests/aslts/src/compilation/collection/local.asl +++ b/tests/aslts/src/compilation/collection/local.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/logic.asl b/tests/aslts/src/compilation/collection/logic.asl index 01359ec..e09bbca 100644 --- a/tests/aslts/src/compilation/collection/logic.asl +++ b/tests/aslts/src/compilation/collection/logic.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/manipulation.asl b/tests/aslts/src/compilation/collection/manipulation.asl index ab77514..789cb2c 100644 --- a/tests/aslts/src/compilation/collection/manipulation.asl +++ b/tests/aslts/src/compilation/collection/manipulation.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/misc.asl b/tests/aslts/src/compilation/collection/misc.asl index 27c4f29..616c981 100644 --- a/tests/aslts/src/compilation/collection/misc.asl +++ b/tests/aslts/src/compilation/collection/misc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/name.asl b/tests/aslts/src/compilation/collection/name.asl index db705c4..2bd7ac6 100644 --- a/tests/aslts/src/compilation/collection/name.asl +++ b/tests/aslts/src/compilation/collection/name.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/reference.asl b/tests/aslts/src/compilation/collection/reference.asl index 4e9edad..015c179 100644 --- a/tests/aslts/src/compilation/collection/reference.asl +++ b/tests/aslts/src/compilation/collection/reference.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/region.asl b/tests/aslts/src/compilation/collection/region.asl index 42aa94b..0c1438f 100644 --- a/tests/aslts/src/compilation/collection/region.asl +++ b/tests/aslts/src/compilation/collection/region.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/synchronization.asl b/tests/aslts/src/compilation/collection/synchronization.asl index 78babbb..c9d79be 100644 --- a/tests/aslts/src/compilation/collection/synchronization.asl +++ b/tests/aslts/src/compilation/collection/synchronization.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/compilation/collection/table.asl b/tests/aslts/src/compilation/collection/table.asl index 3485c40..b502d0c 100644 --- a/tests/aslts/src/compilation/collection/table.asl +++ b/tests/aslts/src/compilation/collection/table.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/DECL.asl b/tests/aslts/src/runtime/cntl/DECL.asl index 6d5ad8a..7e4d077 100644 --- a/tests/aslts/src/runtime/cntl/DECL.asl +++ b/tests/aslts/src/runtime/cntl/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/DECL_5UP.asl b/tests/aslts/src/runtime/cntl/DECL_5UP.asl index c420c53..a6dcdc3 100644 --- a/tests/aslts/src/runtime/cntl/DECL_5UP.asl +++ b/tests/aslts/src/runtime/cntl/DECL_5UP.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/DECL_6UP.asl b/tests/aslts/src/runtime/cntl/DECL_6UP.asl index 7b92234..fe6bb56 100644 --- a/tests/aslts/src/runtime/cntl/DECL_6UP.asl +++ b/tests/aslts/src/runtime/cntl/DECL_6UP.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/DECL_7UP.asl b/tests/aslts/src/runtime/cntl/DECL_7UP.asl index 65e2218..1233e04 100644 --- a/tests/aslts/src/runtime/cntl/DECL_7UP.asl +++ b/tests/aslts/src/runtime/cntl/DECL_7UP.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/MT_DECL.asl b/tests/aslts/src/runtime/cntl/MT_DECL.asl index 53f2e93..fbdad13 100644 --- a/tests/aslts/src/runtime/cntl/MT_DECL.asl +++ b/tests/aslts/src/runtime/cntl/MT_DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/common.asl b/tests/aslts/src/runtime/cntl/common.asl index 5ed4f7b..e4200a1 100644 --- a/tests/aslts/src/runtime/cntl/common.asl +++ b/tests/aslts/src/runtime/cntl/common.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/ehandle.asl b/tests/aslts/src/runtime/cntl/ehandle.asl index df262bd..776a972 100644 --- a/tests/aslts/src/runtime/cntl/ehandle.asl +++ b/tests/aslts/src/runtime/cntl/ehandle.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/mt_runpoint.asl b/tests/aslts/src/runtime/cntl/mt_runpoint.asl index c8578fe..d5fff4f 100644 --- a/tests/aslts/src/runtime/cntl/mt_runpoint.asl +++ b/tests/aslts/src/runtime/cntl/mt_runpoint.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/runmode.asl b/tests/aslts/src/runtime/cntl/runmode.asl index 6fdb51f..4454e0d 100644 --- a/tests/aslts/src/runtime/cntl/runmode.asl +++ b/tests/aslts/src/runtime/cntl/runmode.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/cntl/runpoint.asl b/tests/aslts/src/runtime/cntl/runpoint.asl index ce909d6..5b5533c 100644 --- a/tests/aslts/src/runtime/cntl/runpoint.asl +++ b/tests/aslts/src/runtime/cntl/runpoint.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl index c2507cc..aa2cb47 100644 --- a/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/FULL/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl index 061c15f..c385515 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl index 6cdd6dd..75f1219 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl index 3aa7638..ba7dcfa 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobctl.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl index e2dc68e..42efe70 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobdecl.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl index 87c986b..50e1b02 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexceptions.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl index b8785f7..0870b70 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobexec.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl index c87030e..eee2ca4 100644 --- a/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl +++ b/tests/aslts/src/runtime/collections/IMPL/ACPICA/tests/dynobj/dobmisc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl index 7012d24..bf66a66 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl index 0e0575a..2c8d79e 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ABBU.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl index 222b938..d1f9f91 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/DECL_ASLTS.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl index 9023f15..b48077d 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl index 79050a9..b1872f7 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MAIN_ASLTS.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl index ed083da..2ec484f 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/MsFail/msfail.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl index 493f3ab..50e0dab 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl index 148481f..a710559 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl index 7594c7a..ea920ad 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_abbu.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl index f4473c2..dbbbe5d 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/device/device_aslts.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl index 98d94fd..41a297e 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in00.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl index 6b6b13f..51edfac 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in10.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl index 5522467..78d60ac 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in20.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl index c20fa40..be82820 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in30.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl index 8629fe2..2859f6b 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in40.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl index 589d622..b7a5b0d 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/initial/ns_in50.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl index c858490..44f87cf 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_abbu.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl index 79af2ab..3a0e208 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/method/mt0_aslts.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl index 7fb0030..c7f048a 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl index de5b130..196476d 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/misc/ms1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl index ea62fb8..3917a8c 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_abbu.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl b/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl index bdcdc76..e11a2fc 100644 --- a/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl +++ b/tests/aslts/src/runtime/collections/Identity2MS/abbu/recursion/rec_aslts.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl b/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl index 091abdd..87d38d2 100644 --- a/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl +++ b/tests/aslts/src/runtime/collections/TMP/level/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl index 4e3acae..f5a9574 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl index 9c8064c..2eeb7d9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl index 141d819..2df0e68 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0000/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl index bbbf5b3..6708464 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl index 729511c..b0a2845 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl index 494ad37..b6e511f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0001_ASL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl index 5d2e2c1..f078bf6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl index f07555b..e42da4b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl index eb2e4f4..05e07a3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0002/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl index 423a83c..bc3652b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl index 4aa5c00..39a1843 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl index a534c90..9e2b32d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0003_ASL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl index fed5bce..6ccbebf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl index 6d7ea86..5bcf807 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl index 758f2e8..c1724a4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0004/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl index a940e10..0e5ef95 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl index 809da50..7846410 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl index 89661e8..72881ce 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0005/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl index 132694d..bc7f44e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl index 815893a..e0d0fde 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl index 35cf7aa..e6a3fa2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0006/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl index ab94f87..b85e120 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl index 09c9a7b..0523f87 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl index 79ce1a6..58381df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0007/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl index 1baa67e..4dff1a6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl index 4f3997f..64a8fca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl index aea1cca..ed7321b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0008/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl index 9222e52..4191cf3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl index 3b027e5..4f0f010 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl index 0f2e22b..0bf40a3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0009/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl index 769a5b2..61d29de 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl index 9661ab9..c8662d8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl index 8abaaa9..3ac0e50 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0010/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl index 86bb402..fb2f56e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl index 73557c3..e159d08 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0011_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl index 61803b0..9fad40b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl index 4942240..aff63ce 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel10.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl index 99f4f83..038a0b7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel20.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl index e826aa0..1ed5f7e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclDown.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl index 10b003a..aa6d019 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/DataLevel21_DeclUp.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl index f9a1ab5..e752376 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl index 7d9cdfe..c6c16ef 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/Method.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl index 06fb5bf..6d629c0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0012/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl index 3eb7950..d4dce2f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl index b0e5e94..6665b0b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl index a4fd9b5..f8c9fbc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0013/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl index c7902a7..1067789 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl index 9bc6f80..4981510 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl index 0d64e9f..99d9cd0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0014/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl index b5b51f2..57b78f0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl index 3dcb18b..2095986 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl index cd583d8..942b28b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0015/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl index 11bf55a..131e217 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl index f932b15..53f5dcb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl index 020cbda..2a60ea9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0016/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl index d985507..37a7706 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl index a8315da..29af83d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl index a4f2e68..064a436 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0017/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl index 716f278..bf42b18 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl index 2991f07..286729e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl index 34d9838..00a74a4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0018/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl index 0005211..9753e6f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl index 613c31f..a3f4e96 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl index 9a3f360..24cef5b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0019/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl index d01c420..1a54ac8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl index 812d125..aa1eb2b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl index 1ce3bb0..c0f529e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0020/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl index 87252c1..5313fe8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl index 2f841c7..0c92a6d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl index 4a60f64..156a79b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0021/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl index 4103274..e189fcf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl index d2ba8bf..dfa7c5d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl index 91283d4..486b993 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0022/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl index b3bf7e2..45704c4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl index 931fc6b..fcb6865 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl index 16b6c42..640ad6a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0023/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl index 5f934a6..e321b72 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl index c28242f..c888fb6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0024_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl index dc13285..a4dceca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0025_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl index 76e509a..1e324e4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl index 0716043..2b9c2b8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0026_ASL_NOT_BUG_NOW/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl index 681d388..55f1280 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl index 8334593..f3fc9be 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl index b93b6ba..d451159 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0027/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl index 3a4a26b..dd56715 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl index 308f21c..281acd1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl index 8ad625a..8c20d74 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0028/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl index d3d655b..dff404a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl index a6ab73f..decd353 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl index 1585ca6..377cb30 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0029/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl index 452c356..bfae8f2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl index fc2366b..1b15b8f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl index e9dd328..87759f2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0030/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl index fd37cb6..a7992ac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl index 7f1ac03..cf89e28 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl index 3233693..82aef4f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0031_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl index 3f02eb0..2fad1e6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl index 10d24c7..a84c506 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0032_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl index 9a5541c..d459c69 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl index 954e963..5ccc818 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0033_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl index 91e99d3..9a282c1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl index 3129f59..ff4ed97 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl index 11728fa..fe7a774 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0034/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl index 52ae89c..abe3cd9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl index c6c530e..4de883a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0035_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl index 0fe2f1e..82856ed 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl index 815354f..d18de30 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0036_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl index 1415269..121900e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl index 251664a..c79d0f1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl index ebd113d..54d7b2a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0037/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl index 6d3c5e7..4ef8a3a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl index f8f77d8..d6d9bb7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl index 75aa37d..d885352 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0038/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl index 8bd3b71..90080dc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl index 0bb9a3c..b6a36b6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl index 68cc69e..f65a2ca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0039_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl index 3c0b9f9..a776770 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl index 10e49b1..691920f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl index f60b770..de4b5df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0040/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl index 186ca7a..b310a4a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl index ff3d145..91c339d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl index 218ece4..0af23c9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0041/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl index ca8f5af..9652579 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl index 9ad701b..19fbad7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl index d1babf0..d777004 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0042/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl index 2b0781f..3e1b5de 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl index 7fbc665..2cc94c9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl index a23fd98..1180a69 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0043/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl index 5af70f5..9775557 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl index 2abf034..4df1918 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl index 3a444f1..2b819d9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0044/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl index 08c9344..d16dd15 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl index 5f24808..188e398 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl index 15fd522..4fbda47 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0045/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl index 2a08f6d..c3ad7fb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl index 06674ea..e61e730 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl index ea68a9e..73eaff3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0046/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl index 7b7ef54..750e8f4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl index d9b02f1..f6c7910 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl index 2c27c83..3169cd6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0047/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl index 4d7d57d..a49954c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl index 0c35b9f..5ebbc8d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl index 482c1e5..d72a9d1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0048/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl index fecbd8b..6d6ef65 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl index 7eb8fd8..108e035 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl index 97a8f59..057ee4f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0049/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl index 2cb44e1..604777b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl index 0a71f42..7a56405 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl index 7432a49..f8418c8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0050/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl index f38c8fa..61b3916 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl index 28c4aab..32e52b2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl index 9f6f8e7..1560766 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0051_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl index d9e1443..fa3c624 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl index b8bedce..edcef8b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl index 18063da..2a7ccf9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0052/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl index 4bd6200..8408b84 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl index 3714a6f..b07281a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0053_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl index f5a266d..c398df9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl index 7fa560b..8a2da6c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl index 8da6fba..3090b77 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0054/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl index e321fa3..1fe2e25 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl index 44f8fe1..4b5513d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0055_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl index dad332f..eda7fb7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl index b9c9cc2..0e2b944 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0056_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl index 6eae3ec..ebdf58b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl index 2ea2ade..1530e7c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl index d51fb15..23ce7d2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0057/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl index 12b4a49..0a02823 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl index a25004d..ba67498 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl index d0e1ea8..4c64a98 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0058/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl index d8f2379..be67341 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl index c607bee..b44ffd8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl index 27b004d..2eebd8f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0059/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl index dcc486c..6db7c05 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl index 8c8e332..7d12d85 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl index ecc36c0..9090ac5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0060/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl index 0510b66..76cc1be 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl index 38f97a9..845cfca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl index 4363ccb..ff05375 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0061/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl index 3114694..e77e2fb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl index 60e93bb..29b2a6c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl index 3ea41a5..bc67076 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl index 543ce77..ef64fff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl index 1dcfd65..3e2c160 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0062_ASL_RUNTIME/old_test/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl index a7102ea..0ca9dd8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl index 5ae0ecf..40227d1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl index f7a6648..60424b9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/File1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl index b782d49..5539771 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl index a81aa3b..7c57d42 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/Misc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl index 1c97c29..1dc6662 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0063/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl index 4d60914..88ad58c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl index 8d6911c..fa9b374 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl index 92e1f29..1a569f6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0064/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl index 31eb577..d05ee0a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl index 14304ef..8466fd6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl index 5b09bb7..ceab8d5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0065/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl index 243871c..bc8b01c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl index df687a5..4627fba 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl index 7ae40fe..676761d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0066/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl index d967e39..4c21ec1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl index 28a3f80..3589553 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl index 3a77e70..9f0b8ac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0067/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl index cf5a24b..f472964 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl index 267421a..b182e3b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl index e1b34b2..e8f57ae 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0068/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl index 5195a33..3682f2d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl index 81a6c77..008e214 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl index e3d8f7c..a26eafe 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0069/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl index 2936d9f..5ceb60e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl index 40cb930..56950e7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0070_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl index 1950373..7137178 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl index f55f4c9..1297a47 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0071_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl index 31106f8..357c360 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl index f83b353..4a59826 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0072_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl index ad29d8f..0deb425 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl index a771dca..025eb3f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl index ffa5cec..4747094 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl index 7c6f7d4..e157b9c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0073_ASL/misc.old.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl index 6283060..3741588 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl index 8ea5d03..a574723 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl index 2d1f0af..80318cc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0074/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl index 26f8a9e..37e0820 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl index ce759d0..9553a98 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl index 2ba2723..e7d2d1f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0075/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl index fda31c0..169baf5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl index 3edce16..f31b6cf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl index 091badb..06a1024 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0076/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl index 25a4b01..edda1d3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl index 286bfa8..ebb24e0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl index d28e509..969353d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0077/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl index 923a2f6..8bc5713 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl index 804537a..f77e757 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl index 7abe287..28335e1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0078/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl index 5d272be..65576de 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl index 31dd3a8..9b0a1a1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl index f311b88..d013d6c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0079/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl index a0c2bd9..57ec917 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl index e00d47a..3ccd8ce 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0080_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl index 0187c63..8de944d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl index 3e131d8..e35a45e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl index ad5e44f..a931f44 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0081/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl index bf77f55..aef729d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0082_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl index 015d674..e620975 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl index e29042b..8bdf449 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl index 68f8f41..32bde4c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0083/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl index 280c3e5..ec54bfd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl index d62bbe1..694324e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl index 52c1b58..dcc78ca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0084/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl index a7957a3..7a9b295 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl index cb0cc70..5c35fa6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl index fd940d0..41f10b7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0085/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl index d2abce0..2c91f13 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl index 6c4b1eb..03f161c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl index c369a75..6b750e2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0086/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl index 3a812ed..44cbb0c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl index 64db3db..641692e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl index 4d0ee06..49a81be 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0087/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl index cd349bd..c17a446 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl index 55ced36..f1a7527 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl index 5a11693..7e4eb12 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0088/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl index 20d5319..c7dcec0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0089_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl index ab158e7..fb42804 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0090_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl index 6a6d2e2..ead6433 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0091_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl index f6be6b9..ea2e5c3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl index 91bc10d..e7f3a59 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl index a055c71..de781cd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0092/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl index 23b9360..3c64dfd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl index 59b36df..11d50c5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl index a6d6a4d..bef885a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0093/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl index 1852fa7..ea35c5b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl index 79b267b..ee099b4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl index 73f928e..43f37c4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0094/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl index 297dc7d..7b46004 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl index 1b450e4..bc3874c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl index e125cb2..7df4f6d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0095/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl index 801c493..f882d87 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl index b79b5b9..6293853 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl index b4a94fc..12512e2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0096_ASL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl index 086f4f2..60cd767 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl index 2effe5e..43db272 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl index f0a62f8..5d783bd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0097/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl index f2bc602..6828531 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl index 644a6b3..6029473 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl index f2de7dc..d49d2c1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0098/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl index 39a0b43..b9a4935 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl index aaab4e4..8d79a95 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl index 977f522..472c6e1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0099/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl index ab2f678..c746ce2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl index 62f3d6a..78b7caf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl index bed2766..e675866 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0100/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl index 69755e8..d48acf4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl index 334b679..b1ae980 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl index 692d7e3..a6a6272 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0101/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl index 6c4d834..de2d5e2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl index 27ec649..294cef8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl index 8f7f581..37affaf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0102/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl index 0e549a1..aafcddd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl index 430be36..4ddf838 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl index 349d292..9aaaebb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0103/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl index 6c2b9eb..5a07328 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl index 469b997..b7da276 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl index 88fdb90..745f10d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0104/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl index ff0c696..bcd8a21 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl index 5a23a3e..c24f108 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl index 937b0a5..4de5024 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0105/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl index 65427f4..583e511 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl index fe4d446..e43fd36 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl index b76a4c4..bce7e9a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0106/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl index 9855c2a..45bf9ff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl index ca4d403..b3f3840 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl index 0836424..c6d24bf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0107/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl index 7d28e62..40ebf1e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl index 9abbeba..300d5f9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl index a068e2c..690bb66 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0108_ASL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl index 67e4cee..b9e4ce4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl index 671e082..fa753ec 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0109_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl index 9f9e87e..07c4409 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl index 5edab76..1a6ee25 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl index e9a47cb..9bd4463 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0110_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl index 2cac781..b532f9c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl index 69d0f7f..19203cc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl index fec97e4..1d6e577 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0111/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl index 779b4f1..2901535 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl index 7c45429..eae2845 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl index 26316aa..bb9743c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0112/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl index f731710..755d409 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl index b6d9905..7b3833c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl index 99a2a0d..ee43a63 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0113/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl index c8cd3ae..778c128 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl index 89e8070..3b01012 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0114_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl index c4c92aa..e4a20a9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl index 395d39d..2f7252c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl index fd65ed5..36e31e4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0115/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl index 7fa0910..49803e3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl index 62cb7e9..7fe7881 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0116_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl index b902a3c..2652660 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl index f974d3b..e4e6a0e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl index 181b0cd..0275e5d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0117/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl index b2fb15a..b923560 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.0000.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl index de7be57..357aa7e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl index bf6b331..65e9d68 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl index 0992d90..ec9d763 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0118/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl index fa7db02..8409123 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl index a4fd7a3..7438159 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl index 997556c..ed2724f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0119/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl index e0d89e0..894cb2b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl index 6221c81..d846c99 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl index 2ef75bb..496b76b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0120/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl index 680a592..be9781e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl index 5eb8e10..20cb9a3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/DECL.for_iASL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl index 365441a..053600e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl index f08d188..7f71023 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0121/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl index 534a209..da2f217 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl index 8ee6994..cc8b4a8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0122_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl index 0597f8e..985cf40 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl index c60e3a6..5bed914 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl index 0d91295..f422835 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0123/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl index 2a67e6e..1d25823 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl index f53189c..57fbd41 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl index a3728ca..daeec15 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0124/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl index e688d92..8c0ab91 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl index b799ad7..2604caf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl index 54d34b9..3b05665 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0125/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl index 46a7719..ef15eb3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl index 78ffc50..114be86 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl index a32d5de..b59c82d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0126/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl index 97f766c..7777758 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl index 6a21908..9679fc9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl index 9ca0c60..807b5d7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0127/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl index c64833a..2be9373 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl index d09c4bb..3bdb240 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl index c7cae82..83e1373 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0128/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl index 785f3ca..304f5d2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl index 3c34fda..a2c39e7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/Dynamic.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl index d44c30e..caef0f5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl index 64dfcb3..4a7e510 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl index c41c17b..9d47d98 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticGlobal.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl index d2e7b37..6b794fe 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0129/StaticLocal.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl index b64d8e2..417a3f9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl index aadeffb..95068c6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl index 859706a..154199d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0130/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl index 521e15e..2a7b7ed 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl index 58ebd59..7f2baaa 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl index 61a02fe..b60d94b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0131/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl index 8ddff2f..dc78493 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl index 0aef27e..dd6d024 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl index 470d6dc..bd097a3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0132/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl index 2c3ed30..be911b5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl index ffaffff..1914ce6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl index c88c742..9bcb14b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0133/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl index 1fa22c3..46f363a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl index 3bd0483..6cbd353 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl index 4644c37..d06b87a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0134/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl index 152ed52..6e68694 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Common.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl index e25eb29..0f1ecb4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl index f117663..6c31d8f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/GrInvest.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl index 30fe2b0..198fa57 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl index 9d0708e..03dde3a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Methods.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl index ccc99d7..7e51792 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl index 9d23c24..73810d7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Misc2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl index 084aaf3..9f9eeb9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/Mix.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl index cbc7415..0f1bcc5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/PkgsHierarchy.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl index af7f60c..7e941c0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl index be27797..c78e4fe 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0135/SimplePkgs.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl index 0a60fab..e59a512 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl index 02ec6cf..3b4c867 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl index 6936e7e..58cef5d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0136/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl index f73bdf8..a0b040c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl index 830b9fe..2485077 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl index bc27242..ab120d9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0137/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl index 49abc1c..45d0312 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl index 482f073..6943cdb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl index 8a4c882..0e62508 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0138/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl index 3684c84..5a1a852 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl index 2fc82d0..8d3b688 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl index 5dfbbfa..15405af 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0139/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl index 87d89c6..c7abe31 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl index 88d567f..0ff30b4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0140_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl index 12f04bf..93d9f3b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0141_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl index 082acb8..d1c7d11 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl index f96c752..a8397de 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0142_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl index 3d165a1..d7d918f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl index a8f4bac..0023b02 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl index 350280a..49c7a0a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0143/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl index 27aea4d..b73447e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl index 70e61cb..0595b94 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl index 563b568..43f0aac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0144/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl index 7964c6b..0b7d99c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl index 996908a..aa4141c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0145_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl index 15af26c..8a9731a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl index 1f4fde9..88df708 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl index bf2716d..7d08d50 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0146/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl index 8a98d3e..da119c7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl index d439fbf..89346d9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl index dc5a2d6..980a2cb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0147/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl index 4d938bf..5fdfcee 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl index f966ef8..2a49b11 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0148_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl index 57c79af..19f979b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0149_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl index c019ab1..df5f080 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl index a3eb2db..937fe74 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl index 043edfd..560c0e9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0150/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl index 2631db5..5d4e6d3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl index d01a0e7..3f77581 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl index d5a433a..a215608 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0151/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl index 7b7553d..54ea757 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl index 286609b..62606ab 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0152_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl index 12ba480..3b6df48 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl index 631a781..b37e2aa 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Exc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl index 9bd94d2..4df3713 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl index 19e2b49..84347f0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/Mix.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl index bc27b09..4490a17 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl index 52d5234..b34e626 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToBuffer.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl index 8b45795..572ac09 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDevice.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl index c44d3eb..ba1a66e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToDeviceGlob.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl index 12aa98a..3946ed8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToEvent.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl index 38f4c05..def1256 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToInteger.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl index 40c1278..2975e9a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToMutex.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl index 2426c9c..b741007 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPackage.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl index 2b4443d..486b962 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToPowerRes.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl index 86d770c..1a4bafb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToProcessor.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl index b89562e..763df5d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToRegion.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl index dbef192..2e95741 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToString.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl index 36043d0..e2e70fe 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0153/ToThermalZone.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl index b415f54..5463d39 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl index bd6305a..64eff82 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl index 2d20b67..1232fdc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0154/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl index 8afff0d..2f102aa 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl index 2b9ed62..e5ecb66 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl index 7c94107..fe19e2c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0155/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl index c2e885c..b8b669d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl index dfa1537..0c8637c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl index 614483c..14d1484 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0156_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl index 681ae83..59e37b2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl index c3c31a6..57b9e1c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl index 698ef35..1eba958 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0157/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl index 6a3b060..e7399ac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl index c1a199e..273aa6a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl index 26aa52c..a1757d2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0158_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl index 409767c..da83be1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl index 71b3695..5c96a16 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl index f485db8..b645990 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0159_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl index d7ea9bf..9ab2cdd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl index 764f761..91faf84 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl index 472bc92..42e8269 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0160/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl index ed0ef44..7a2fb2d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl index 521db11..28c38a2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl index 29caedd..cfcffc0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0161/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl index 8944587..6902bb6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl index dc58d14..d2db4d8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl index e26384a..2878736 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0162/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl index 651be16..03a9564 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl index bc41903..f7f296a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl index e70414b..7d870cf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0163_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl index b64f980..1907944 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0164_ACTION_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl index 790cfb2..46b3d23 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl index 753b49a..df1660c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl index 87230ec..9e8fed1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0165_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl index 4540c94..6950797 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl index bfd024a..c754975 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl index 43b38b6..c3c6652 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0166_ML/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl index a682d6b..ff37ae5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl index 9148c0c..78889bb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl index 0cad778..a137627 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0167/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl index d728877..edf55da 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl index ac777ea..11e8bc5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl index 44e5f3d..9a5bd15 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0168_ACT_REQ_NOPT/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl index fc2c032..a5eccb9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl index ea8f2c2..9dd89ff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl index 4d90ea5..897716c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0169/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl index 6d22093..117c5d0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl index 7281430..bfbebb8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl index 7274b85..40c2190 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0170/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl index 75ddbc1..ecbda4a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl index 32ee288..c80dce7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl index fca52d8..a577ea6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0171_ACTION_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl index ed7d844..08eab99 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl index 0b12c7d..35a341a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl index 2633a47..b161373 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0172_OUTSTAND_ALLOC/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl index 11698ff..31c8fd8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0173_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl index 03cd111..ccefaf3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl index 6597dae..9e2ec65 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl index 891a520..350d1ee 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0174/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl index e1123dd..e4f83ec 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl index e8c2ec1..de74534 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl index e16ceff..b1f577a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0175/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl index b0b61b9..ef626a1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl index 2379196..e0ee621 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl index 3d313ea..ae33f5f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0176/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl index 624959a..8c4437d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl index be8a02f..46f4fe0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl index 5553727..a3789ed 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0177/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl index e38905d..051ca47 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl index 8ba46f7..1f30d9d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl index e04e985..0a64cff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0178/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl index 8334005..d88f7c8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl index c94adae..6358f2a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl index 932b750..9904fa7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0179/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl index 57dad41..02e42bd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl index f3a260b..600ce46 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl index 2775bf3..1301d45 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0180_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl index bdaa00f..00ba258 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl index 3c9a0ac..104445b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl index ac906fe..98a8bdb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0181_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl index f3ec861..b7dd98a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl index a60ef52..de206c0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl index 3724538..8b67d9b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0182/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl index c0e1a0a..3624922 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl index 94a9e53..647cb73 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl index a96e04d..fd04e42 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0183/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl index 66e64b2..a3d5003 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl index 7cd8aa1..4f44aef 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl index 5d608a2..5bca742 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0184/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl index b9476f6..7bd665f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl index 360f93e..d65d464 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl index 4d8a4d0..21d2a50 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0185/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl index 972bf3e..4f7dcf7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl index 44f1cc8..d289806 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl index 0d1f466..55539bb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0186/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl index 1c88789..3bbbf53 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl index cf6cee3..8e89a18 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl index f913c0f..d5206e4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl index f03644e..a16cac3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl index adaf4d4..e033924 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl index 6f59dbd..5aed473 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0188/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl index a6cf12e..1246d72 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl index cf2e3ff..acdf599 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl index d310d71..f06eca0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0189/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl index ead7bed..b3096d0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl index e7c13a5..759dd0b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl index dcf8b3c..da45d7d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0190/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl index 0a8fe27..7aa2520 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl index 41a15a4..417b04e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl index 5bdad77..3784c14 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0191/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl index 338352f..55a16eb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl index fdb968a..79198b7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl index 4cd1e98..864709d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0192/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl index a576f81..6b8134f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl index b425c91..46ec7cf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl index 5f48109..943dd59 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0193/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl index 782e5e0..2df2e10 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl index 8ff2784..04ae0ba 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl index 206dd11..ffc3d75 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0194/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl index 6d32eca..6bc2b6a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl index cae76c8..90b7e14 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl index b3f7ece..11529a8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0195/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl index 156dfce..3e4e2fd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl index 1383433..d0762e6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl index 0c273ce..d15ba13 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0196/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl index e33ca7d..4c59818 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl index 63ca74b..f5bc03d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl index 819a1b4..9119285 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0197/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl index b28fd12..68a1e96 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.0000.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl index e7486e8..2206dd8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl index 3cfbb78..fdc11ae 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl index 38b45c0..3b6f29b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0198/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl index 918e0ff..780fc4e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl index 34d6e70..3038e51 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl index fe58da3..fc314e8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0199/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl index 3ba0d76..7ffe995 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl index 714e3f4..61a8f7c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl index 33b6a09..bd356fd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0200/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl index 1bd614a..e047a25 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl index b7df4d9..01dfaab 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl index a297edd..9feb5ef 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0201_OUTSTAND_ALLOC/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl index b21d7d3..d54d521 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0202_SEE_129/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl index 570ed22..e6b4f0b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl index e777186..5ef6f4f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl index a275b6c..1f434de 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0203/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl index f09246e..2e7e7e7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl index 15de63b..27af2c1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl index 26977cb..9ec449f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0204/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl index 2580793..12632b8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl index 9d2ec7a..7f4a0e6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl index 1fbbae1..efe9bbf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0205/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl index c67a456..be29d16 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl index ad1b984..ee103d5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl index cad5708..dfd5b08 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0206/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl index 9312985..da4d277 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl index c26e88d..0830174 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl index cb4d7a2..8b62311 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0207/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl index e4bbdc6..70d93c0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl index 689be08..7521928 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl index f141538..e5d1a3b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0208/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl index d1fc5ee..fc04c0e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0209_ML_SEE_135/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl index 21e1c34..7d281db 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl index 74b279c..26c5812 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl index 774a3b2..8228907 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0210/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl index cdf0375..24d9bba 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl index 094ae82..bb93cd9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl index a6165b9..66debe5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0211/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl index 5ebbbd9..3ab5bfd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Common.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl index 047bde4..4a736c7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl index 778b053..09a1450 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl index d6c86e5..7715946 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/Misc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl index efb9743..429b782 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0212/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl index 3bd2451..eb88769 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl index 927dfd5..1643a83 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl index 886f372..558d5e9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0213/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl index cff52e9..2ad4c36 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl index b78715e..e045b96 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl index b309a31..669d342 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0214/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl index 915cc88..fce5cc0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl index 762d9e5..6cc7cc1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl index f5094bc..dc8d336 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0215/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl index d5084aa..e977d95 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl index 4dda473..967a527 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl index 17872da..92ab259 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0216/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl index 79f9d3a..4a03af8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl index 18f26c8..5cc6efd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl index 88ef7f3..eb7cf39 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0217/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl index db4afd0..4ed8fac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl index ae3a928..89c5b28 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl index 378511a..9bf791e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0218/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl index 0a98fb0..35fc367 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl index a32ade1..7b5b3c6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl index 012382c..5628c17 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0219/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl index 6d7d6a2..09940ff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl index 840c32f..b9a6dac 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl index b58c23c..4b2041d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0220/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl index 172e9fc..1d0b3ae 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl index e85f9ee..8215d15 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl index daa32f7..9482f1b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0221/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl index 32e074c..5081b73 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl index afa1aac..bbb303a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl index 4db10c0..9029273 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0222/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl index 0257941..3218b6f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl index e4a08c1..77119df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl index 6cf0f39..05ec15d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0223/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl index 8537e71..a3de764 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl index cfa13df..8cec315 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl index af988c5..90a0c49 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0224/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl index 1a6408f..b6b35ed 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl index 8e6d787..d01d0f8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0225_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl index 0531e48..a19d38d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl index 97464ea..092c9ab 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl index 432e5ce..df38947 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0226/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl index 78f6774..f95fc3a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl index b20651b..1b7be8d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0227_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl index 65e8363..6e35311 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl index 55875fa..5c08e19 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl index 4c4751b..8103c43 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0228/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl index 7254ed4..859dfd0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl index 870832d..7b984ad 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl index 915b74e..36a96dd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0229/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl index 3fb50af..3b34cc0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl index 25e783e..b702a97 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl index 9929fb7..deb71df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0230/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl index b2f6949..e7a0eb4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl index ace85c0..9a3d9b9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl index 26ce98e..f04c4a2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0231/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl index 8e98a60..59b5e16 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl index 6845b08..74c7053 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl index c2e075c..578b176 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0232_F_OPTION/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl index bfd1de0..485c91b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl index 0c72e75..2d51926 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0233_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl index 49e86da..0061799 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0234_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl index 611ba1d..659c224 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0235_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl index 8e647da..b1b56e5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl index aa14e77..ea50d1d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0236_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl index f2e7583..58f6248 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl index dcc3a6e..8a6cfb0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0237_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl index 73b0383..d71094f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl index 847c1e0..7163ad0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl index ba43efe..fe46a77 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0238/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl index b5ac1c0..c903e96 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl index 02322cd..ba7bba1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl index 720072e..68805be 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0239_ACTION_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl index bbd5d8f..65ff5df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl index 82b1c22..516744c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl index ac4d969..65e737a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0240_ACTION_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl index 95fe70d..8f95718 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl index 7426158..9c1c904 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl index 1b72ee2..373f2d5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0241/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl index e0bab91..54a0c34 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl index 372b930..0b35c75 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl index 4c0acf3..d2dbfbc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0242/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl index 99ae8a1..0ef3958 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl index 1de0140..deb99bd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl index bc201bd..3d7c7df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0243/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl index de996a1..42e4ec4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl index 9f2fb19..c5ad76b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl index 1d1925f..6d23324 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0244/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl index 574a0e5..2aee471 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0245_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl index 8d81174..ca44a0e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl index 8832d79..514db0d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl index df2b0cb..8c7d0f1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0246/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl index e6fdfdf..995e883 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl index 9997116..7390043 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl index 01a5ed1..21073f8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0247/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl index e82112d..e49b708 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl index 5f5b67a..0cd9ee6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl index 69504c6..fc9b48f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0248/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl index 55c8a6f..6139200 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0249_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl index a55f578..a71cd29 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0250_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl index d8fadf0..70d373a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl index ecf4c87..1119943 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0251_ACTION_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl index dc26025..1a8365b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl index 2e9384f..900e3c4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0252_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl index 21cdc13..8ff38ce 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0253_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl index 448db9d..2c28a71 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0254_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl index 25d9ed5..e2a97f2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0255_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl index e29b5eb..a60df93 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0256_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl index 32ef998..9797c74 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl index bc62602..7d15635 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl index 35af370..fece000 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0257/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl index 7159a33..cd2fb67 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl index 79da7ff..6c3ec55 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl index dbd25ad..525e252 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0258/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl index 7dd7062..aae2cf9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl index 1f9df58..57de6fb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl index 506d168..65ec312 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0259/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl index 2df024b..2177a16 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl index dd611d1..3024b9b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl index ac37dfb..76ccfc6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0260/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl index b6b6059..ad0d716 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl index 1cd0e25..1f224a5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl index 922a865..b31d631 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0261/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl index 3e9892d..12f133e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl index d34436d..49e35ab 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl index 4bbf884..276e13a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0262/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl index b59665d..e4d5ac8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl index a1c8350..59a23e4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl index d94b56c..63cebd0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0263/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl index 6717908..85945db 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl index 187828b..5192522 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl index 1710f0e..ae552b7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0264/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl index 576743a..480e94d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl index ac2420e..a61c15d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl index 5ad2244..37a0b48 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0265/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl index 85ce68e..f009266 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0266_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl index 202046b..e1c94fc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0267_DEMO_IMPOSSIBLE/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl index 783349c..7714844 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl index bcdf4e1..1be3c70 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl index 72fa2b2..f4f8cb4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0268/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl index 0fb4e0f..7e22258 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl index 9dfb6a8..53d0c45 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl index 2656d44..b81491d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0269/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl index 1bbc619..5f831a3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0270_SPEC/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl index 2686a62..b327d44 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl index 36a47f5..76b706c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl index c3ee508..bca7a2c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0271/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl index 76cf6d8..3bd5d4b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl index 3338b35..540ad40 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl index e872de2..6a7674a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0272/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl index fe3a554..b07882a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl index 3d0231a..98a605a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl index 5591a72..ef2b9e9 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0273/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl index 870c325..a57fbc2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl index a364d22..37a9b17 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl index 4225bdf..f138753 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0274/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl index 4d1312e..6dceba5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl index df98214..c283a89 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl index d6086b9..e2c4d1d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0275/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl index ab5196c..18b1bbf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl index 7790cb5..1475bfd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl index 62431d2..6e5ebaa 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0276_LARGE_REF_COUNT/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl index 700f0d3..195925b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl index 7ae9237..9524b1a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl index 0b3a551..2ea7f57 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl index d3bc076..c09395b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0278/ssdt.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl index e4bf4ab..003e6ff 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl index 0dd050e..393b0d3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl index eeca01b..48b221a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0279_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl index 81910b3..c5d9e2d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl index c74d5c7..28e188c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl index 2654e6c..9b621a1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0280_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl index 926bead..0e278ad 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl index d68ee3c..dd7ab98 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl index 54d9b5e..f4a006f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0281/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl index 8da9759..6d6275a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl index 800b6c8..493a1bc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl index aa8e13f..b045280 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0282/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl index ded7bff..f8b27ba 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl index 600a904..fab9168 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl index 06a8eb0..376d1dd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0283/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl index 7a06305..59896cd 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl index f63f155..e017ebc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl index 1783c88..d3b4a33 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0284/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl index defb0b7..0f84dba 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl index e9f300e..c5ff874 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl index 97cfb95..a7d19f2 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0285/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl index 191553b..8521b28 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl index b7fe679..331e391 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl index b8922b9..fdebe65 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0286/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl index 151f8f3..971b226 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl index e4e9905..02bdd25 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl index fc0e8cb..e281ff3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0287/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl index d8ea4be..78e0a3b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl index 5267f6a..c4c4a05 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl index e038eb5..4f0e84f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0288_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl index 1c5db87..97f5037 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl index f747870..84c6736 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl index 5f6a471..176bd2f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0289/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl index 436d9e4..5217e97 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl index a4363e6..2d36028 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl index 901e09e..7d8f66e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0290/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl index 3769a3b..299e831 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl index 5d39ecd..17763bc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl index 1c2af03..05c4181 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0291_ASL_RUNTIME/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl index 7392660..0d9b4bc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl index 39f827e..7190840 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl index 9a9135f..def2d91 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0292/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl index 0761fba..a6fb0e1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl index 50fa480..822e968 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl index a72ffab..464829c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0293/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl index 361d173..7fbca5f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl index 4918781..e1c46a8 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl index 0a9e85c..f971885 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0294/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl index ca5a286..8145646 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl index 8539688..ef4993e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0295_ASL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl index ad39da2..babb915 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl index 7301d29..0642273 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl index a7c0d55..da3466a 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0296/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl index 3a77d60..a332376 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl index f3022e5..992c376 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl index 1addf10..404d41d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0297_ACTIONS_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl index dd8c468..a6680c7 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl index 5fe9eeb..82f9f69 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl index dbdeb55..8a35245 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0298_ACTIONS_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl index 926d4ac..a4e734e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl index b871a77..73a3677 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl index a2a81e0..c8a6f8f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0299_ACTIONS_REQUIRED/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl index 3595f8f..208651f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl index 8c51ee5..123b6d5 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl index d57886d..24bc863 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0300/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl index cff61c9..987f4e6 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl index 7c52c87..cc0cfce 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl index 084e2a7..66137f0 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0301/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl index 49eb955..340493c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl index 879c6e8..c0373d3 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl index 3a9efd0..af5b8b4 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0302/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl index 874bac1..1427e3d 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl index 9b1d653..18148bf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl index b75eef3..7f83d1f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0303/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl index 4685f09..9536eeb 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl index cd737bf..ac4ef9e 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl index b04f897..7d68a2b 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0304/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl index 04a2775..4752a89 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl index 7a63a46..7caedcc 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl index 8d674eb..a8e3c69 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0305/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl index 79ec576..cef8311 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl index de73169..4e0af16 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl index a0233fa..863088f 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0306/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl index 69421c9..d3de763 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl index f3e721d..ae76818 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl index 9680fb6..8b0c532 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemo/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl index 1f66a8d..b0b83da 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl index e9c4986..f6b59c1 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl index 8907594..979463c 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/bdemof/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl index 79b69da..84969bf 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl index 7e28625..85d02ca 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl index 85b7f4d..3b84757 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/data.src.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl index 74fbdce..7d684df 100644 --- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl +++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/common/proc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl b/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl index 3cfafdd..f8bf274 100644 --- a/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl +++ b/tests/aslts/src/runtime/collections/complex/FULL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl index da75eb7..066d444 100644 --- a/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl b/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl index 26a8d95..c9c3972 100644 --- a/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/FULL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl b/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl index 0367ad2..0145973 100644 --- a/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/badasl/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl b/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl index bcb845a..63d0f91 100644 --- a/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/badasl/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl b/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl index 11319c2..b1f2d59 100644 --- a/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl +++ b/tests/aslts/src/runtime/collections/complex/badasl/badasl.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl b/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl index 2dc3780..769c273 100644 --- a/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/misc/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/misc/RUN.asl b/tests/aslts/src/runtime/collections/complex/misc/RUN.asl index d7149e1..0c54eaf 100644 --- a/tests/aslts/src/runtime/collections/complex/misc/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/misc/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/misc/misc.asl b/tests/aslts/src/runtime/collections/complex/misc/misc.asl index d106a22..4bbcba5 100644 --- a/tests/aslts/src/runtime/collections/complex/misc/misc.asl +++ b/tests/aslts/src/runtime/collections/complex/misc/misc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl b/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl index d3159a9..cfd2ef7 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl b/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl index c7d76ec..1ed0184 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl b/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl index 76ef990..1891e29 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl b/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl index 5731746..266857a 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/fullpath.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl index 1029066..625a3f0 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl index 95c7f7d..78b26ae 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns0_root.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl index 9cf0232..267ebba 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl index 0873747..a6deeae 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl index 8dbe88a..800dabe 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns2_root.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl index 6fd1f8d..b80f7e6 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns3.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl b/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl index d9dbf98..b8d5e0f 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/ns4.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/namespace/scope.asl b/tests/aslts/src/runtime/collections/complex/namespace/scope.asl index e70d819..f9bcb9b 100644 --- a/tests/aslts/src/runtime/collections/complex/namespace/scope.asl +++ b/tests/aslts/src/runtime/collections/complex/namespace/scope.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl b/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl index f1f2856..abd73f0 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/common/ocommon.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl index bcac775..6b3a06e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl index 0a14779..e271aeb 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl index 396bfd9..7a6a46a 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/FULL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl index 4b1ec3f..2c5823e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl index f0ef63c..b05f306 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl index e10916c..88ef755 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oarg/oarg.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl index 8cc9f57..0e3084e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl index 56efbda..b6b5c33 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl index 70630f2..d838ef6 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconst/oconst.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl index 246fa80..e9146b8 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl index 82273b9..353d969 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl index ccdbe42..1db4f6e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oconversion/oconversion.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl index d0f31e2..2e46629 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl index f1ef071..68b62a2 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl index 662d18e..fd7dddc 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/olocal/olocal.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl index 96b2409..8b5bf7e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl index e8bad45..e11ad5a 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl index 319a696..2c7b932 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl index 73cf575..ea50162 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedglob/onamedglob2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl index 1bdea31..9cd5e74 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl index 84462d6..6eea762 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl index 2f4fd96..40fd7aa 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl index 34b2b56..c906faa 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/onamedloc/onamedloc2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl index 7dc5132..fcc7e19 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl index 260493c..de274fd 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl index 24877c7..22771ae 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/opackageel/opackageel.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl index a413aea..3a5140b 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl index d992575..67ed288 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl index 1c58061..e739c06 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl index 8a138f2..fb5d66d 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftonamed/oreftonamed2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl index 88ab7dd..dcef97e 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl index 96d1207..97faf69 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl index 2e9ff70..6338d08 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreftopackageel/oreftopackageel.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl index d0bf171..572777f 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl index 390a879..5771ef8 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl index ad495f9..d85e78a 100644 --- a/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl +++ b/tests/aslts/src/runtime/collections/complex/operand/tests/oreturn/oreturn.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl b/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl index 0875708..6c5f875 100644 --- a/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/provoke/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl b/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl index 0876ae2..8647a46 100644 --- a/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/provoke/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl b/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl index 22e402a..e4a47d6 100644 --- a/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl +++ b/tests/aslts/src/runtime/collections/complex/provoke/provoke.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl b/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl index 2350464..5176352 100644 --- a/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl +++ b/tests/aslts/src/runtime/collections/complex/result/common/rcommon.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl index 3c7e258..745ce9c 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl index 6ff3c85..3beebc9 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl index 045de72..8e2c7ff 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/FULL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl index 8093d9e..4ffebb3 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl index 4ad2d90..2d4b58c 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl index f322982..c4d813e 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rconversion/rconversion.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl index 1d8805d..dad317d 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl index 4a65907..4063c3f 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl index 63a10ce..da3d798 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rcopyobject/rcopyobject.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl index 5f3313d..f6f04dc 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl index 8a1ed59..48bfc8c 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl index 92bfd54..862989d 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rexplicitconv/rexplicitconv.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl index 854f6a4..aae6cc7 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl index ffc13f1..6e2d8e7 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl index f0f4b91..63a0922 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rindecrement/rindecrement.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl index eaebb2c..db9827d 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl index af2c9d5..4dc5bea 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl index a0e0295..fb802f5 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/roptional.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl index 34fb6e4..11b5a7d 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl index c7817de..24618fb 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl index 337efed..3eb279c 100644 --- a/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl +++ b/tests/aslts/src/runtime/collections/complex/result/tests/rstore/rstore.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl b/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl index b039ddc..70d5eb8 100644 --- a/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl +++ b/tests/aslts/src/runtime/collections/exceptions/FULL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl index 90c4d7b..f704e2d 100644 --- a/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl index 29ed8a6..b4883c7 100644 --- a/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/FULL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl index 4f0b48f..7b3625f 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl index 15c31ab..83527e4 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl b/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl index e3629d1..e54ed94 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc/exc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl index bdb6f4f..92e62e6 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl index c22b50d..459c56c 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl index 90f76d8..f107b7c 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl index 6459611..10237b5 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand1/exc_operand1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl index 9695a83..f9a5703 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl index ca07dea..7c0f9e4 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl index 2a5a383..4985efe 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_00_undef.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl index 72c4c58..e973a23 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_01_int.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl index 389ce16..584a257 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_02_str.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl index 246f260..5d6c7c0 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_03_buf.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl index d47e27f..116a519 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_04_pckg.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl index a788d79..f6393b2 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_05_funit.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl index 3f18820..9969f87 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_06_dev.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl index 763e514..8fefd1d 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_07_event.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl index 710efdc..c46ff8b 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_08_method.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl index 47dc5cd..6c3b0f9 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_09_mux.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl index 33169ec..b1d31ac 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_10_oreg.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl index 29cd60a..90c6b70 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_11_pwr.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl index 31de124..79ed4d9 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_12_proc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl index c9e34e1..73ba586 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_13_tzone.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl index aa9ff83..6a7ac2f 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_14_bfield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl index 433591a..ae8152b 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_operand/exc_operand2/exc_operand2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl index 5bf73af..1d30c28 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_ref/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl index 105c07f..93b622f 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_ref/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl index 1ea8261..c86a9f6 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl index 4b1c17e..0c4309a 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl index 91035f9..3823c7c 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result1/exc_result1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl index 4e91d57..10f6fa7 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl index 0a80b5a..4d51e0c 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl index 053f83d..87f518b 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_result/exc_result2/exc_result2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl index d982612..28169b4 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_tbl/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl b/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl index 989d2cd..f25333c 100644 --- a/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl +++ b/tests/aslts/src/runtime/collections/exceptions/exc_tbl/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl b/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl index 4329d3d..e06ba14 100644 --- a/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/FULL/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl b/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl index 15ffc08..14419c9 100644 --- a/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/FULL/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl b/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl index cde09bb..185f548 100644 --- a/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/FULL/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl b/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl index b4608c6..0b19e94 100644 --- a/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/arithmetic/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl b/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl index d23125c..75bf7f4 100644 --- a/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/arithmetic/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl b/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl index b7460e6..16909f6 100644 --- a/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/arithmetic/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl b/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl index 1c9578d..9cc4815 100644 --- a/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl +++ b/tests/aslts/src/runtime/collections/functional/arithmetic/arithmetic.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl b/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl index 00c4b76..7dde586 100644 --- a/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/bfield/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl b/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl index 839f917..8874017 100644 --- a/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/bfield/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl b/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl index 4c498e4..9b2f29e 100644 --- a/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/bfield/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl b/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl index 8a97fda..8de0664 100644 --- a/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl +++ b/tests/aslts/src/runtime/collections/functional/bfield/crbuffield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/constant/DECL.asl b/tests/aslts/src/runtime/collections/functional/constant/DECL.asl index 6887555..ef7c9e3 100644 --- a/tests/aslts/src/runtime/collections/functional/constant/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/constant/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl b/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl index 214e32e..4c34c1a 100644 --- a/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/constant/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/constant/RUN.asl b/tests/aslts/src/runtime/collections/functional/constant/RUN.asl index c1579d7..a635dd1 100644 --- a/tests/aslts/src/runtime/collections/functional/constant/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/constant/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/constant/constants.asl b/tests/aslts/src/runtime/collections/functional/constant/constants.asl index 9bf6249..2d9d2c7 100644 --- a/tests/aslts/src/runtime/collections/functional/constant/constants.asl +++ b/tests/aslts/src/runtime/collections/functional/constant/constants.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/DECL.asl b/tests/aslts/src/runtime/collections/functional/control/DECL.asl index b4dc9d2..5b773ab 100644 --- a/tests/aslts/src/runtime/collections/functional/control/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/control/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl index f3a1d25..60b5e5a 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl index 10878bd..ba2dad7 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl index 1473265..136e43d 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl index 446cbad..4d418ad 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/add.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl index 49bd286..7000723 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/standaloneret.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl index dd901e1..c5d8a4e 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ImplicitReturn/store.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/MAIN.asl b/tests/aslts/src/runtime/collections/functional/control/MAIN.asl index 53b9bb5..af5f6f9 100644 --- a/tests/aslts/src/runtime/collections/functional/control/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/RUN.asl b/tests/aslts/src/runtime/collections/functional/control/RUN.asl index 59690ca..f6c0eeb 100644 --- a/tests/aslts/src/runtime/collections/functional/control/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl b/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl index cc93054..eef018f 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Recursion/recursion.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl b/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl index 4397077..364b603 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Recursion/stack_overflow.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl b/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl index 9323441..ebaa4fe 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Return/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl b/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl index b966203..9e800c3 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Return/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl b/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl index 1f99154..bd6b24f 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Return/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/Return/return.asl b/tests/aslts/src/runtime/collections/functional/control/Return/return.asl index 9d0e504..7893f71 100644 --- a/tests/aslts/src/runtime/collections/functional/control/Return/return.asl +++ b/tests/aslts/src/runtime/collections/functional/control/Return/return.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ctl0.asl b/tests/aslts/src/runtime/collections/functional/control/ctl0.asl index 1296f71..4a1b708 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ctl0.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ctl0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ctl1.asl b/tests/aslts/src/runtime/collections/functional/control/ctl1.asl index 9608ffe..b2f518a 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ctl1.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ctl1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/ctl2.asl b/tests/aslts/src/runtime/collections/functional/control/ctl2.asl index e49ad19..4335034 100644 --- a/tests/aslts/src/runtime/collections/functional/control/ctl2.asl +++ b/tests/aslts/src/runtime/collections/functional/control/ctl2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch1.asl b/tests/aslts/src/runtime/collections/functional/control/switch1.asl index 21a66d9..05dad8c 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch1.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch2.asl b/tests/aslts/src/runtime/collections/functional/control/switch2.asl index 8472249..4a8c36d 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch2.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch3.asl b/tests/aslts/src/runtime/collections/functional/control/switch3.asl index 6649fdb..8315d12 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch3.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch3.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch4.asl b/tests/aslts/src/runtime/collections/functional/control/switch4.asl index 39e69a6..4fafa79 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch4.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch4.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch5.asl b/tests/aslts/src/runtime/collections/functional/control/switch5.asl index 9b38ffe..c1c2ccb 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch5.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch5.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/switch6.asl b/tests/aslts/src/runtime/collections/functional/control/switch6.asl index 8750e24..84deaee 100644 --- a/tests/aslts/src/runtime/collections/functional/control/switch6.asl +++ b/tests/aslts/src/runtime/collections/functional/control/switch6.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/timing.asl b/tests/aslts/src/runtime/collections/functional/control/timing.asl index 8a42bfd..6b82021 100644 --- a/tests/aslts/src/runtime/collections/functional/control/timing.asl +++ b/tests/aslts/src/runtime/collections/functional/control/timing.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/control/while.asl b/tests/aslts/src/runtime/collections/functional/control/while.asl index 47d9cf1..1e179df 100644 --- a/tests/aslts/src/runtime/collections/functional/control/while.asl +++ b/tests/aslts/src/runtime/collections/functional/control/while.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl b/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl index 3c7fdd2..4a2ee8f 100644 --- a/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/copyobject/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl b/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl index 62aa65f..19c018e 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl b/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl index b9a1a68..0b1dc7f 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl b/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl index 3a52e8d..4e44f92 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl b/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl index 746c521..ab767a3 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/concatenaterestemplate.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl b/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl index 8094e91..a53298f 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/dependentfn.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl b/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl index fe95eae..a4c5c54 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/dma.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl index e4ef0f7..28d688d 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/dwordio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl b/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl index 643b076..302f1f4 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/dwordmemory.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl b/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl index d8810fc..74d228c 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/dwordspace.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl index 40c6dfb..985549b 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/extendedio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl b/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl index 4fcf2c4..23a48c9 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/extendedmemory.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl b/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl index a7284da..e1f11e6 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/extendedspace.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl b/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl index f7a1f9c..967ca85 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/fixeddma.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl index 969fe93..d57e350 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/fixedio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl b/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl index aa952f1..16a25bc 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/gpioint.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl index 5f4b435..6766a2b 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/gpioio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl b/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl index 945b54a..5cf9a7b 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/i2cserialbus.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl b/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl index 0c65468..34b525b 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/interrupt.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/io.asl b/tests/aslts/src/runtime/collections/functional/descriptor/io.asl index 23ed152..bb47d43 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/io.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/io.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl b/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl index 2f65ddc..be8f4e0 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/irq.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl b/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl index 5f531ca..ea65a41 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/irqnoflags.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl b/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl index a0add46..d62a711 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/memory24.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl b/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl index f2448e9..59a8d82 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/memory32.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl b/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl index 486339e..69953f3 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/memory32fixed.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl index 0cd20de..f175b4d 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/qwordio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl b/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl index 71b52dd..50d9a3d 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/qwordmemory.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl b/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl index 453720d..5af28db 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/qwordspace.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/register.asl b/tests/aslts/src/runtime/collections/functional/descriptor/register.asl index cdde354..0ade4e3 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/register.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/register.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl b/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl index 988d059..57ada24 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/resourcetemplate.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl b/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl index f40e638..410ce80 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/rtemplate.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl b/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl index b1390af..eea7bf1 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/spiserialbus.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl b/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl index e0e30bf..4ddcbda 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/uartserialbus.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl b/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl index d78aef1..95d1140 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/vendorlong.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl b/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl index 694ec86..087363d 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/vendorshort.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl b/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl index 2c239d2..268c3fd 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/wordbusnumber.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl b/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl index 9ad7888..65b24a3 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/wordio.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl b/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl index 4033929..dc3037a 100644 --- a/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl +++ b/tests/aslts/src/runtime/collections/functional/descriptor/wordspace.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/local/DECL.asl b/tests/aslts/src/runtime/collections/functional/local/DECL.asl index c655964..70004fe 100644 --- a/tests/aslts/src/runtime/collections/functional/local/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/local/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/local/MAIN.asl b/tests/aslts/src/runtime/collections/functional/local/MAIN.asl index c5bef77..733d8e0 100644 --- a/tests/aslts/src/runtime/collections/functional/local/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/local/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/local/RUN.asl b/tests/aslts/src/runtime/collections/functional/local/RUN.asl index 628adc6..b088c77 100644 --- a/tests/aslts/src/runtime/collections/functional/local/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/local/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/local/local.asl b/tests/aslts/src/runtime/collections/functional/local/local.asl index 6fab200..7454852 100644 --- a/tests/aslts/src/runtime/collections/functional/local/local.asl +++ b/tests/aslts/src/runtime/collections/functional/local/local.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/logic/DECL.asl b/tests/aslts/src/runtime/collections/functional/logic/DECL.asl index 360c187..f9ec847 100644 --- a/tests/aslts/src/runtime/collections/functional/logic/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/logic/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl b/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl index 6e6bcc9..60cb115 100644 --- a/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/logic/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/logic/RUN.asl b/tests/aslts/src/runtime/collections/functional/logic/RUN.asl index 86fefef..9fbe3aa 100644 --- a/tests/aslts/src/runtime/collections/functional/logic/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/logic/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/logic/logical.asl b/tests/aslts/src/runtime/collections/functional/logic/logical.asl index 96a5136..7691f6f 100644 --- a/tests/aslts/src/runtime/collections/functional/logic/logical.asl +++ b/tests/aslts/src/runtime/collections/functional/logic/logical.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl b/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl index eddb4ad..e7531e5 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl b/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl index a4953f8..078b5eb 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl b/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl index d80e57d..e404bcb 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl b/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl index 7e52812..1665bcc 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/concatenate.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl b/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl index 78a06c0..a9a0d96 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/eisaid.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl b/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl index 26277eb..7da16c6 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/match1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl b/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl index 7a72111..89632ca 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/match2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl b/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl index b5dda53..6d94c55 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/mid.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl b/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl index 59d863a..2926d1e 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/objecttype.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl b/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl index 10847a5..79b7368 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/sizeof.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/store.asl b/tests/aslts/src/runtime/collections/functional/manipulation/store.asl index 70ab43e..42e8745 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/store.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/store.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl b/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl index dee01fd..d4bc0a9 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/tobuffer.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl b/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl index f316a25..8f7afca 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/todecimalstring.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl b/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl index cc7487b..97a8b45 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/tofrombcd.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl b/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl index 0fd16e2..ec79365 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/tohexstring.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl b/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl index 36de96c..6c9372b 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/tointeger.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl b/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl index 9339ebd..74f3489 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/tostring.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl b/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl index e9f6320..3512037 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/touuid.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl b/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl index 0ae3932..37da18c 100644 --- a/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl +++ b/tests/aslts/src/runtime/collections/functional/manipulation/unicode.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/DECL.asl b/tests/aslts/src/runtime/collections/functional/name/DECL.asl index 8b798d6..84cf4eb 100644 --- a/tests/aslts/src/runtime/collections/functional/name/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/name/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/MAIN.asl b/tests/aslts/src/runtime/collections/functional/name/MAIN.asl index 4c65a1c..1127aff 100644 --- a/tests/aslts/src/runtime/collections/functional/name/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/name/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/RUN.asl b/tests/aslts/src/runtime/collections/functional/name/RUN.asl index 129a14c..5c96413 100644 --- a/tests/aslts/src/runtime/collections/functional/name/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/name/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/function.asl b/tests/aslts/src/runtime/collections/functional/name/function.asl index 58ba1c0..79fbe7f 100644 --- a/tests/aslts/src/runtime/collections/functional/name/function.asl +++ b/tests/aslts/src/runtime/collections/functional/name/function.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/method.asl b/tests/aslts/src/runtime/collections/functional/name/method.asl index b96f5ec..29ade99 100644 --- a/tests/aslts/src/runtime/collections/functional/name/method.asl +++ b/tests/aslts/src/runtime/collections/functional/name/method.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/name.asl b/tests/aslts/src/runtime/collections/functional/name/name.asl index d95490d..b8be6e0 100644 --- a/tests/aslts/src/runtime/collections/functional/name/name.asl +++ b/tests/aslts/src/runtime/collections/functional/name/name.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/name/package.asl b/tests/aslts/src/runtime/collections/functional/name/package.asl index 930ee31..861b0d2 100644 --- a/tests/aslts/src/runtime/collections/functional/name/package.asl +++ b/tests/aslts/src/runtime/collections/functional/name/package.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/DECL.asl b/tests/aslts/src/runtime/collections/functional/reference/DECL.asl index 16ba302..c418139 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl b/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl index 26f3ad4..5558f19 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/RUN.asl b/tests/aslts/src/runtime/collections/functional/reference/RUN.asl index 75f129f..f080bef 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref00.asl b/tests/aslts/src/runtime/collections/functional/reference/ref00.asl index 38de369..3a9cc4a 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref00.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref00.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref01.asl b/tests/aslts/src/runtime/collections/functional/reference/ref01.asl index 513b877..ed690cd 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref01.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref01.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref02.asl b/tests/aslts/src/runtime/collections/functional/reference/ref02.asl index e52747b..db7d84c 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref02.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref02.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref03.asl b/tests/aslts/src/runtime/collections/functional/reference/ref03.asl index 789f396..aee475f 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref03.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref03.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref04.asl b/tests/aslts/src/runtime/collections/functional/reference/ref04.asl index 2d78e6a..a69d6c7 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref04.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref04.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref05.asl b/tests/aslts/src/runtime/collections/functional/reference/ref05.asl index a3b583d..e655a44 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref05.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref05.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref06.asl b/tests/aslts/src/runtime/collections/functional/reference/ref06.asl index fcb81fe..8bba646 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref06.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref06.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref07.asl b/tests/aslts/src/runtime/collections/functional/reference/ref07.asl index 6921514..177b865 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref07.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref07.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref50.asl b/tests/aslts/src/runtime/collections/functional/reference/ref50.asl index 994a2ad..869f0df 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref50.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref50.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref70.asl b/tests/aslts/src/runtime/collections/functional/reference/ref70.asl index a493727..d2c5941 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref70.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref70.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/reference/ref71.asl b/tests/aslts/src/runtime/collections/functional/reference/ref71.asl index 034dc1a..7dc8090 100644 --- a/tests/aslts/src/runtime/collections/functional/reference/ref71.asl +++ b/tests/aslts/src/runtime/collections/functional/reference/ref71.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/DECL.asl b/tests/aslts/src/runtime/collections/functional/region/DECL.asl index 60d1d0d..cca95c3 100644 --- a/tests/aslts/src/runtime/collections/functional/region/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/region/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/MAIN.asl b/tests/aslts/src/runtime/collections/functional/region/MAIN.asl index f800cd6..33dc6d8 100644 --- a/tests/aslts/src/runtime/collections/functional/region/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/region/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/RUN.asl b/tests/aslts/src/runtime/collections/functional/region/RUN.asl index b2b35eb..aa85418 100644 --- a/tests/aslts/src/runtime/collections/functional/region/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/region/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/bankfield.asl b/tests/aslts/src/runtime/collections/functional/region/bankfield.asl index 0e86e36..cb02d5a 100644 --- a/tests/aslts/src/runtime/collections/functional/region/bankfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/bankfield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/dtregions.asl b/tests/aslts/src/runtime/collections/functional/region/dtregions.asl index d58d889..324bbb5 100644 --- a/tests/aslts/src/runtime/collections/functional/region/dtregions.asl +++ b/tests/aslts/src/runtime/collections/functional/region/dtregions.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/indexfield.asl b/tests/aslts/src/runtime/collections/functional/region/indexfield.asl index 1ccdc5d..35c7473 100644 --- a/tests/aslts/src/runtime/collections/functional/region/indexfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/indexfield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/opregions.asl b/tests/aslts/src/runtime/collections/functional/region/opregions.asl index 8cc378d..f906bfb 100644 --- a/tests/aslts/src/runtime/collections/functional/region/opregions.asl +++ b/tests/aslts/src/runtime/collections/functional/region/opregions.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/region/regionfield.asl b/tests/aslts/src/runtime/collections/functional/region/regionfield.asl index 5ee4d5d..67cd331 100644 --- a/tests/aslts/src/runtime/collections/functional/region/regionfield.asl +++ b/tests/aslts/src/runtime/collections/functional/region/regionfield.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl b/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl index 603793d..8c3a70b 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl b/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl index e88a6a9..06d8f04 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl b/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl index ca2e38f..d63b624 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/event.asl b/tests/aslts/src/runtime/collections/functional/synchronization/event.asl index 5b00249..0a0fb7e 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/event.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/event.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl b/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl index e3b58ab..30f6668 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/mutex.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl b/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl index 744ee7a..7aefe32 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/mutex2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl b/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl index d79a483..ed8b764 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/mutex_proc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl b/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl index be521a8..938e5db 100644 --- a/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl +++ b/tests/aslts/src/runtime/collections/functional/synchronization/serialized.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/DECL.asl b/tests/aslts/src/runtime/collections/functional/table/DECL.asl index 459d481..52c6866 100644 --- a/tests/aslts/src/runtime/collections/functional/table/DECL.asl +++ b/tests/aslts/src/runtime/collections/functional/table/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/MAIN.asl b/tests/aslts/src/runtime/collections/functional/table/MAIN.asl index 3cb98c4..07b71cf 100644 --- a/tests/aslts/src/runtime/collections/functional/table/MAIN.asl +++ b/tests/aslts/src/runtime/collections/functional/table/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/RUN.asl b/tests/aslts/src/runtime/collections/functional/table/RUN.asl index 62dcca6..1fc791f 100644 --- a/tests/aslts/src/runtime/collections/functional/table/RUN.asl +++ b/tests/aslts/src/runtime/collections/functional/table/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/load.asl b/tests/aslts/src/runtime/collections/functional/table/load.asl index 9f93d1f..f92300b 100644 --- a/tests/aslts/src/runtime/collections/functional/table/load.asl +++ b/tests/aslts/src/runtime/collections/functional/table/load.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/loadtable.asl b/tests/aslts/src/runtime/collections/functional/table/loadtable.asl index 7dddf95..1fb4214 100644 --- a/tests/aslts/src/runtime/collections/functional/table/loadtable.asl +++ b/tests/aslts/src/runtime/collections/functional/table/loadtable.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/oem1.asl b/tests/aslts/src/runtime/collections/functional/table/oem1.asl index 90bfa98..ed22fc4 100644 --- a/tests/aslts/src/runtime/collections/functional/table/oem1.asl +++ b/tests/aslts/src/runtime/collections/functional/table/oem1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl b/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl index f573cd7..fd36eb3 100644 --- a/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl +++ b/tests/aslts/src/runtime/collections/functional/table/ssdt0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl b/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl index 04951e9..e01d4b2 100644 --- a/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl +++ b/tests/aslts/src/runtime/collections/functional/table/ssdt1.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl b/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl index fcdb6b9..9e6ce96 100644 --- a/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl +++ b/tests/aslts/src/runtime/collections/functional/table/ssdt2.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl b/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl index b2bdb1d..3623a2b 100644 --- a/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl +++ b/tests/aslts/src/runtime/collections/functional/table/ssdt3.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl b/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl index 108e605..9e5ec28 100644 --- a/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl +++ b/tests/aslts/src/runtime/collections/functional/table/ssdt4.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/functional/table/unload.asl b/tests/aslts/src/runtime/collections/functional/table/unload.asl index bb2fe8e..e66854f 100644 --- a/tests/aslts/src/runtime/collections/functional/table/unload.asl +++ b/tests/aslts/src/runtime/collections/functional/table/unload.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl b/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl index 321749f..87bf3de 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl b/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl index 2dfda32..2a4bc8d 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/common.asl b/tests/aslts/src/runtime/collections/mt/mutex/common.asl index bd17d40..30f2c78 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/common.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/common.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/example0.asl b/tests/aslts/src/runtime/collections/mt/mutex/example0.asl index fadac0d..ca09f8a 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/example0.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/example0.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl b/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl index d161948..02c75ff 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/mt_access.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl b/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl index 3cc070f..85495e0 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/mutex.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl b/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl index 099fabf..514c43f 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/mxs.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/service.asl b/tests/aslts/src/runtime/collections/mt/mutex/service.asl index a3ec209..d65bed5 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/service.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/service.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl b/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl index c0a44ae..52f928c 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/slave_thr.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/mt/mutex/tests.asl b/tests/aslts/src/runtime/collections/mt/mutex/tests.asl index 736fb24..0e3d046 100644 --- a/tests/aslts/src/runtime/collections/mt/mutex/tests.asl +++ b/tests/aslts/src/runtime/collections/mt/mutex/tests.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl b/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl index 580379c..7c2c40e 100644 --- a/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl +++ b/tests/aslts/src/runtime/collections/service/condbranches/DECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl b/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl index 5aa0257..6125e9c 100644 --- a/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl +++ b/tests/aslts/src/runtime/collections/service/condbranches/MAIN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl b/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl index 5f1a9cc..3c79262 100644 --- a/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl +++ b/tests/aslts/src/runtime/collections/service/condbranches/RUN.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl b/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl index 1b8b806..12dc5ce 100644 --- a/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl +++ b/tests/aslts/src/runtime/collections/service/condbranches/condbranches.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/TCI/tcicmd.asl b/tests/aslts/src/runtime/common/TCI/tcicmd.asl index 38111a9..1cf163a 100644 --- a/tests/aslts/src/runtime/common/TCI/tcicmd.asl +++ b/tests/aslts/src/runtime/common/TCI/tcicmd.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/oDECL.asl b/tests/aslts/src/runtime/common/conversion/oDECL.asl index 4de53eb..d6cd526 100644 --- a/tests/aslts/src/runtime/common/conversion/oDECL.asl +++ b/tests/aslts/src/runtime/common/conversion/oDECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/oproc.asl b/tests/aslts/src/runtime/common/conversion/oproc.asl index 1402bbc..43bde69 100644 --- a/tests/aslts/src/runtime/common/conversion/oproc.asl +++ b/tests/aslts/src/runtime/common/conversion/oproc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/otest.asl b/tests/aslts/src/runtime/common/conversion/otest.asl index 0aca4b8..8928bcc 100644 --- a/tests/aslts/src/runtime/common/conversion/otest.asl +++ b/tests/aslts/src/runtime/common/conversion/otest.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/rDECL.asl b/tests/aslts/src/runtime/common/conversion/rDECL.asl index 5ca99ce..bf0ca78 100644 --- a/tests/aslts/src/runtime/common/conversion/rDECL.asl +++ b/tests/aslts/src/runtime/common/conversion/rDECL.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/rproc.asl b/tests/aslts/src/runtime/common/conversion/rproc.asl index d30c6d6..4423a96 100644 --- a/tests/aslts/src/runtime/common/conversion/rproc.asl +++ b/tests/aslts/src/runtime/common/conversion/rproc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/conversion/rtest.asl b/tests/aslts/src/runtime/common/conversion/rtest.asl index 44b4cd2..1a33320 100644 --- a/tests/aslts/src/runtime/common/conversion/rtest.asl +++ b/tests/aslts/src/runtime/common/conversion/rtest.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/data.asl b/tests/aslts/src/runtime/common/data.asl index 68a39f5..f0feb65 100644 --- a/tests/aslts/src/runtime/common/data.asl +++ b/tests/aslts/src/runtime/common/data.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/dataproc.asl b/tests/aslts/src/runtime/common/dataproc.asl index 5dde841..d10285e 100644 --- a/tests/aslts/src/runtime/common/dataproc.asl +++ b/tests/aslts/src/runtime/common/dataproc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/datastproc.asl b/tests/aslts/src/runtime/common/datastproc.asl index f453b14..78b7b9a 100644 --- a/tests/aslts/src/runtime/common/datastproc.asl +++ b/tests/aslts/src/runtime/common/datastproc.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/mx_objects.asl b/tests/aslts/src/runtime/common/mx_objects.asl index 9861213..cebf878 100644 --- a/tests/aslts/src/runtime/common/mx_objects.asl +++ b/tests/aslts/src/runtime/common/mx_objects.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/aslts/src/runtime/common/operations.asl b/tests/aslts/src/runtime/common/operations.asl index 39a738e..36b1961 100644 --- a/tests/aslts/src/runtime/common/operations.asl +++ b/tests/aslts/src/runtime/common/operations.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/tests/misc/grammar.asl b/tests/misc/grammar.asl index d8b201a..ee0f2bc 100644 --- a/tests/misc/grammar.asl +++ b/tests/misc/grammar.asl @@ -1,5 +1,5 @@ /* - * Some or all of this work - Copyright (c) 2006 - 2014, Intel Corp. + * Some or all of this work - Copyright (c) 2006 - 2015, Intel Corp. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification,