Print this page
update to acpica-unix2-20140114
acpica-unix2-20130823
PANKOVs restructure

@@ -1,14 +1,13 @@
-
 /******************************************************************************
  *
  * Module Name: exnames - interpreter/scanner name load/execute
  *
  *****************************************************************************/
 
 /*
- * Copyright (C) 2000 - 2011, Intel Corp.
+ * Copyright (C) 2000 - 2014, Intel Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:

@@ -333,11 +332,10 @@
             AmlAddress++;
             PrefixCount = ACPI_UINT32_MAX;
             HasPrefix = TRUE;
             break;
 
-
         case AML_PARENT_PREFIX:
 
             /* Increment past possibly multiple parent prefixes */
 
             do

@@ -351,11 +349,10 @@
             } while (*AmlAddress == AML_PARENT_PREFIX);
 
             HasPrefix = TRUE;
             break;
 
-
         default:
 
             /* Not a prefix character */
 
             break;

@@ -387,11 +384,10 @@
             {
                 Status = AcpiExNameSegment (&AmlAddress, NameString);
             }
             break;
 
-
         case AML_MULTI_NAME_PREFIX_OP:
 
             ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "MultiNamePrefix at %p\n",
                 AmlAddress));
 

@@ -419,11 +415,10 @@
                 NumSegments--;
             }
 
             break;
 
-
         case 0:
 
             /* NullName valid as of 8-12-98 ASL/AML Grammar Update */
 
             if (PrefixCount == ACPI_UINT32_MAX)

@@ -442,11 +437,10 @@
                 break;
             }
 
             break;
 
-
         default:
 
             /* Name segment string */
 
             NameString = AcpiExAllocateNameString (PrefixCount, 1);

@@ -482,7 +476,5 @@
     *OutNameString = NameString;
     *OutNameLength = (UINT32) (AmlAddress - InAmlAddress);
 
     return_ACPI_STATUS (Status);
 }
-
-