diff options
Diffstat (limited to 'drivers/acpi/acpica/acopcode.h')
| -rw-r--r-- | drivers/acpi/acpica/acopcode.h | 12 | 
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/acopcode.h b/drivers/acpi/acpica/acopcode.h index 8c15ff43f42..dda0e6affcf 100644 --- a/drivers/acpi/acpica/acopcode.h +++ b/drivers/acpi/acpica/acopcode.h @@ -5,7 +5,7 @@   *****************************************************************************/  /* - * Copyright (C) 2000 - 2010, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -54,7 +54,7 @@  #define _UNK                        0x6B  /* - * Reserved ASCII characters.  Do not use any of these for + * Reserved ASCII characters. Do not use any of these for   * internal opcodes, since they are used to differentiate   * name strings from AML opcodes   */ @@ -63,7 +63,7 @@  #define _PFX                        0x6D  /* - * All AML opcodes and the parse-time arguments for each.  Used by the AML + * All AML opcodes and the parse-time arguments for each. Used by the AML   * parser  Each list is compressed into a 32-bit number and stored in the   * master opcode table (in psopcode.c).   */ @@ -93,6 +93,7 @@  #define ARGP_CONCAT_OP                  ARGP_LIST3 (ARGP_TERMARG,    ARGP_TERMARG,       ARGP_TARGET)  #define ARGP_CONCAT_RES_OP              ARGP_LIST3 (ARGP_TERMARG,    ARGP_TERMARG,       ARGP_TARGET)  #define ARGP_COND_REF_OF_OP             ARGP_LIST2 (ARGP_SUPERNAME,  ARGP_SUPERNAME) +#define ARGP_CONNECTFIELD_OP            ARGP_LIST1 (ARGP_NAMESTRING)  #define ARGP_CONTINUE_OP                ARG_NONE  #define ARGP_COPY_OP                    ARGP_LIST2 (ARGP_TERMARG,    ARGP_SIMPLENAME)  #define ARGP_CREATE_BIT_FIELD_OP        ARGP_LIST3 (ARGP_TERMARG,    ARGP_TERMARG,       ARGP_NAME) @@ -164,6 +165,7 @@  #define ARGP_RETURN_OP                  ARGP_LIST1 (ARGP_TERMARG)  #define ARGP_REVISION_OP                ARG_NONE  #define ARGP_SCOPE_OP                   ARGP_LIST3 (ARGP_PKGLENGTH,  ARGP_NAME,          ARGP_TERMLIST) +#define ARGP_SERIALFIELD_OP             ARGP_LIST1 (ARGP_NAMESTRING)  #define ARGP_SHIFT_LEFT_OP              ARGP_LIST3 (ARGP_TERMARG,    ARGP_TERMARG,       ARGP_TARGET)  #define ARGP_SHIFT_RIGHT_OP             ARGP_LIST3 (ARGP_TERMARG,    ARGP_TERMARG,       ARGP_TARGET)  #define ARGP_SIGNAL_OP                  ARGP_LIST1 (ARGP_SUPERNAME) @@ -191,7 +193,7 @@  #define ARGP_ZERO_OP                    ARG_NONE  /* - * All AML opcodes and the runtime arguments for each.  Used by the AML + * All AML opcodes and the runtime arguments for each. Used by the AML   * interpreter  Each list is compressed into a 32-bit number and stored   * in the master opcode table (in psopcode.c).   * @@ -223,6 +225,7 @@  #define ARGI_CONCAT_OP                  ARGI_LIST3 (ARGI_COMPUTEDATA,ARGI_COMPUTEDATA,   ARGI_TARGETREF)  #define ARGI_CONCAT_RES_OP              ARGI_LIST3 (ARGI_BUFFER,     ARGI_BUFFER,        ARGI_TARGETREF)  #define ARGI_COND_REF_OF_OP             ARGI_LIST2 (ARGI_OBJECT_REF, ARGI_TARGETREF) +#define ARGI_CONNECTFIELD_OP            ARGI_INVALID_OPCODE  #define ARGI_CONTINUE_OP                ARGI_INVALID_OPCODE  #define ARGI_COPY_OP                    ARGI_LIST2 (ARGI_ANYTYPE,    ARGI_SIMPLE_TARGET)  #define ARGI_CREATE_BIT_FIELD_OP        ARGI_LIST3 (ARGI_BUFFER,     ARGI_INTEGER,       ARGI_REFERENCE) @@ -294,6 +297,7 @@  #define ARGI_RETURN_OP                  ARGI_INVALID_OPCODE  #define ARGI_REVISION_OP                ARG_NONE  #define ARGI_SCOPE_OP                   ARGI_INVALID_OPCODE +#define ARGI_SERIALFIELD_OP             ARGI_INVALID_OPCODE  #define ARGI_SHIFT_LEFT_OP              ARGI_LIST3 (ARGI_INTEGER,    ARGI_INTEGER,       ARGI_TARGETREF)  #define ARGI_SHIFT_RIGHT_OP             ARGI_LIST3 (ARGI_INTEGER,    ARGI_INTEGER,       ARGI_TARGETREF)  #define ARGI_SIGNAL_OP                  ARGI_LIST1 (ARGI_EVENT)  | 
