diff options
Diffstat (limited to 'source/compiler/aslcompiler.l')
| -rw-r--r-- | source/compiler/aslcompiler.l | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/source/compiler/aslcompiler.l b/source/compiler/aslcompiler.l index 872063192982..3d5488d39e62 100644 --- a/source/compiler/aslcompiler.l +++ b/source/compiler/aslcompiler.l @@ -6,7 +6,7 @@   *****************************************************************************/  /* - * Copyright (C) 2000 - 2012, Intel Corp. + * Copyright (C) 2000 - 2013, Intel Corp.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -201,7 +201,7 @@ NamePathTail                [.]{NameSeg}  "Mutex"                     { count (2); return (PARSEOP_MUTEX); }  "Name"                      { count (2); return (PARSEOP_NAME); }  "NAnd"                      { count (3); return (PARSEOP_NAND); } -"Noop"                      { count (3); return (PARSEOP_NOOP); } +"Noop"                      { if (!AcpiGbl_IgnoreNoopOperator) {count (3); return (PARSEOP_NOOP);} }  "NOr"                       { count (3); return (PARSEOP_NOR); }  "Not"                       { count (3); return (PARSEOP_NOT); }  "Notify"                    { count (3); return (PARSEOP_NOTIFY); } | 
