diff options
author | Lv Zheng <lv.zheng@intel.com> | 2012-12-19 00:37:29 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-10 06:36:18 -0500 |
commit | 7b6afb6782053f9679f5b9f05287f8c700d7d68f (patch) | |
tree | d8a6236ecfae7037ac265e97b37fa08d1235452f /drivers/acpi/acpica/exfldio.c | |
parent | 9c0d793945a343e13d8b0ab20ac825ad5705bcf1 (diff) |
ACPICA: Fix broken call depth tracing logic.
This patch does not affect the generation of the Linux binary.
This patch decreases 26 lines of 20121018 divergence.diff.
The ACPICA uses a call depth tracing mechanism by wrapping the return
statements with return macros and marking the entrance with
ACPI_FUNCTION_TRACE_ macros. There are other ACPI_FUNCTION_ macros used
to mark the functions not using this tracing mechanism.
This patch fixes broken call depth tracing logic.
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/exfldio.c')
-rw-r--r-- | drivers/acpi/acpica/exfldio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/exfldio.c b/drivers/acpi/acpica/exfldio.c index aa2ccfb7cb61..2c2146cfa6a1 100644 --- a/drivers/acpi/acpica/exfldio.c +++ b/drivers/acpi/acpica/exfldio.c | |||
@@ -329,7 +329,6 @@ acpi_ex_access_region(union acpi_operand_object *obj_desc, | |||
329 | static u8 | 329 | static u8 |
330 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) | 330 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) |
331 | { | 331 | { |
332 | ACPI_FUNCTION_NAME(ex_register_overflow); | ||
333 | 332 | ||
334 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { | 333 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { |
335 | /* | 334 | /* |