Skip to content

Commit

Permalink
ACPI: wakeup.c: remove ACPI_FUNCTION_TRACE
Browse files Browse the repository at this point in the history
ACPI_FUNCTION_TRACE is an internal acpica function.
remove ACPI_FUNCTION_TRACE

Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Lin Ming authored and Len Brown committed Dec 31, 2008
1 parent 95d9a7a commit c1e3523
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/acpi/sleep/wakeup.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ void acpi_enable_wakeup_device_prep(u8 sleep_state)
{
struct list_head *node, *next;

ACPI_FUNCTION_TRACE("acpi_enable_wakeup_device_prep");

spin_lock(&acpi_device_lock);
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
struct acpi_device *dev = container_of(node,
Expand Down Expand Up @@ -61,7 +59,6 @@ void acpi_enable_wakeup_device(u8 sleep_state)
* Caution: this routine must be invoked when interrupt is disabled
* Refer ACPI2.0: P212
*/
ACPI_FUNCTION_TRACE("acpi_enable_wakeup_device");
spin_lock(&acpi_device_lock);
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
struct acpi_device *dev =
Expand Down Expand Up @@ -103,8 +100,6 @@ void acpi_disable_wakeup_device(u8 sleep_state)
{
struct list_head *node, *next;

ACPI_FUNCTION_TRACE("acpi_disable_wakeup_device");

spin_lock(&acpi_device_lock);
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
struct acpi_device *dev =
Expand Down

0 comments on commit c1e3523

Please sign in to comment.