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

*** 3,13 **** * Module Name: psutils - Parser miscellaneous utilities (Parser only) * *****************************************************************************/ /* ! * Copyright (C) 2000 - 2011, 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: --- 3,13 ---- * Module Name: psutils - Parser miscellaneous utilities (Parser only) * *****************************************************************************/ /* ! * 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,256 **** 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) --- 236,245 ----
*** 285,290 **** return; } Op->Named.Name = name; } - --- 274,278 ----