diff options
author | Len Brown <len.brown@intel.com> | 2006-07-01 16:48:23 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-07-01 16:48:23 -0400 |
commit | 635227ee89929a6e2920fc8aa1cd48f7225d3d93 (patch) | |
tree | b40e81898310a364ca7be378f42212e06dd71238 /drivers/acpi/numa.c | |
parent | 3f86b83243d59bb50caf5938d284d22e10d082a4 (diff) |
ACPI: remove function tracing macros from drivers/acpi/*.c
a few invocations appeared due to the SBS and other patches.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/numa.c')
-rw-r--r-- | drivers/acpi/numa.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/acpi/numa.c b/drivers/acpi/numa.c index 4d622981f61a..e5e448edca41 100644 --- a/drivers/acpi/numa.c +++ b/drivers/acpi/numa.c @@ -259,12 +259,10 @@ int acpi_get_node(acpi_handle *handle) { int pxm, node = -1; - ACPI_FUNCTION_TRACE("acpi_get_node"); - pxm = acpi_get_pxm(handle); if (pxm >= 0) node = acpi_map_pxm_to_node(pxm); - return_VALUE(node); + return node; } EXPORT_SYMBOL(acpi_get_node); |