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

@@ -3,11 +3,11 @@
  * Module Name: psutils - Parser miscellaneous utilities (Parser only)
  *
  *****************************************************************************/
 
 /*
- * 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:

@@ -236,21 +236,10 @@
     return ((BOOLEAN) (c == '_' || (c >= 'A' && c <= 'Z')));
 }
 
 
 /*
- * Is "c" a namestring prefix character?
- */
-BOOLEAN
-AcpiPsIsPrefixChar (
-    UINT32                  c)
-{
-    return ((BOOLEAN) (c == '\\' || c == '^'));
-}
-
-
-/*
  * Get op's name (4-byte name segment) or 0 if unnamed
  */
 UINT32
 AcpiPsGetName (
     ACPI_PARSE_OBJECT       *Op)

@@ -285,6 +274,5 @@
         return;
     }
 
     Op->Named.Name = name;
 }
-