From: Bob Moore Date: Mon, 31 Dec 2012 00:06:21 +0000 (+0000) Subject: ACPICA: Update ACPI_IS_DEBUG_ENABLED macro. X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=27441887599d7929e53eb7044791ae58ea5aec20;p=linux-edison.git ACPICA: Update ACPI_IS_DEBUG_ENABLED macro. Add extra parens to allow use of !ACPI_IS_DEBUG_ENABLED. Signed-off-by: Bob Moore Signed-off-by: Lv Zheng Signed-off-by: Rafael J. Wysocki --- diff --git a/include/acpi/acoutput.h b/include/acpi/acoutput.h index be014bf7efe..5ef4e57adc9 100644 --- a/include/acpi/acoutput.h +++ b/include/acpi/acoutput.h @@ -286,7 +286,7 @@ /* Helper macros for DEBUG_PRINT */ #define ACPI_IS_DEBUG_ENABLED(level, component) \ - (level & acpi_dbg_level) && (component & acpi_dbg_layer) + ((level & acpi_dbg_level) && (component & acpi_dbg_layer)) #define ACPI_DEBUG(function, level, line, filename, modulename, component, ...) \ if (ACPI_IS_DEBUG_ENABLED (level, component)) \