aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Schmauss <erik.schmauss@intel.com>2018-01-03 18:06:30 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2018-01-04 19:33:23 -0500
commita8c314bee4587526b29f949387c58551a9a74fcb (patch)
treebf711a21441d2e7f899b8c2809c0f77c591d9a29
parente7b2005c608aa3dc00cd00a5001415ae04382d13 (diff)
ACPICA: trivial style fix, no functional change
ACPICA commit 83f3375d6dcb3af812c91aaf47abcac9fc330527 This adds a semi-colon at the end of a macro call so that it can be processed correctly with source code formatting tools. Link: https://github.com/acpica/acpica/commit/83f3375d Signed-off-by: Erik Schmauss <erik.schmauss@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/acpica/exdump.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/exdump.c b/drivers/acpi/acpica/exdump.c
index ccdd2a417aa1..b2ff61bdb9a8 100644
--- a/drivers/acpi/acpica/exdump.c
+++ b/drivers/acpi/acpica/exdump.c
@@ -617,10 +617,11 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
617 u32 length; 617 u32 length;
618 u32 index; 618 u32 index;
619 619
620 ACPI_FUNCTION_NAME(ex_dump_operand) 620 ACPI_FUNCTION_NAME(ex_dump_operand);
621 621
622 /* Check if debug output enabled */ 622 /* Check if debug output enabled */
623 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) { 623
624 if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) {
624 return; 625 return;
625 } 626 }
626 627