aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2007-11-23 18:33:11 -0500
committerLen Brown <len.brown@intel.com>2008-02-07 03:32:27 -0500
commit4e83dd95b343a4ecfdb236aa046a5366a29e6f1e (patch)
tree2b59f61244aee2c9f4d1a2a0f2c890b125556784 /include/acpi
parent488b5ec871191359b9b79262a3d48456dae7ea5f (diff)
ACPICA: fix CONFIG_ACPI_DEBUG_FUNC_TRACE build
798d91039849486c7a4f1a458a5680cb55a65408 (ACPI: create CONFIG_ACPI_DEBUG_FUNC_TRACE) failed to associate the new tracing config option with the tracing code. Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acmacros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/acpi/acmacros.h b/include/acpi/acmacros.h
index 45662f6dbdb6..99d171c87c84 100644
--- a/include/acpi/acmacros.h
+++ b/include/acpi/acmacros.h
@@ -486,7 +486,7 @@
486#define ACPI_FUNCTION_NAME(name) 486#define ACPI_FUNCTION_NAME(name)
487#endif 487#endif
488 488
489#ifdef DEBUG_FUNC_TRACE 489#ifdef CONFIG_ACPI_DEBUG_FUNC_TRACE
490 490
491#define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \ 491#define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \
492 acpi_ut_trace(ACPI_DEBUG_PARAMETERS) 492 acpi_ut_trace(ACPI_DEBUG_PARAMETERS)
@@ -565,7 +565,7 @@
565 565
566#endif /* ACPI_SIMPLE_RETURN_MACROS */ 566#endif /* ACPI_SIMPLE_RETURN_MACROS */
567 567
568#else /* !DEBUG_FUNC_TRACE */ 568#else /* !CONFIG_ACPI_DEBUG_FUNC_TRACE */
569 569
570#define ACPI_FUNCTION_TRACE(a) 570#define ACPI_FUNCTION_TRACE(a)
571#define ACPI_FUNCTION_TRACE_PTR(a,b) 571#define ACPI_FUNCTION_TRACE_PTR(a,b)
@@ -584,7 +584,7 @@
584#define return_UINT32(s) return(s) 584#define return_UINT32(s) return(s)
585#define return_PTR(s) return(s) 585#define return_PTR(s) return(s)
586 586
587#endif /* DEBUG_FUNC_TRACE */ 587#endif /* CONFIG_ACPI_DEBUG_FUNC_TRACE */
588 588
589/* Conditional execution */ 589/* Conditional execution */
590 590