diff options
author | Bob Moore <robert.moore@intel.com> | 2014-11-27 14:26:21 +0800 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-11-28 00:00:53 +0100 |
commit | f8c73f8a64f48940d554ea2c4186ce7d778c46dc (patch) | |
tree | e428b290351ca15c10cf9be87dfbae3fcddd4d05 | |
parent | 5f040fc77632eed68a89080ee2d2d8fd7b5f6df5 (diff) | |
download | linux-f8c73f8a64f48940d554ea2c4186ce7d778c46dc.tar.bz2 |
ACPICA: Disassembler: Update for C-style expressions.
Add extra set of parens for assignments within an expression.
This patch only affects compiler support which is not in the Linux kernel.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpica/aclocal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/aclocal.h b/drivers/acpi/acpica/aclocal.h index 1c218d9478cb..80c74e90f3cc 100644 --- a/drivers/acpi/acpica/aclocal.h +++ b/drivers/acpi/acpica/aclocal.h @@ -829,6 +829,7 @@ struct acpi_parse_state { #define ACPI_PARSEOP_PREDEF_CHECKED 0x08 #define ACPI_PARSEOP_SPECIAL 0x10 #define ACPI_PARSEOP_COMPOUND 0x20 +#define ACPI_PARSEOP_ASSIGNMENT 0x40 /***************************************************************************** * |