Skip to content

Commit

Permalink
ACPI: proc.c: remove ACPI_FUNCTION_TRACE
Browse files Browse the repository at this point in the history
ACPI_FUNCTION_TRACE and return_VALUE are internal acpica functions.
remove ACPI_FUNCTION_TRACE
replace return_VALUE with return

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 0175d56 commit 95d9a7a
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions drivers/acpi/sleep/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ static int acpi_system_sleep_seq_show(struct seq_file *seq, void *offset)
{
int i;

ACPI_FUNCTION_TRACE("acpi_system_sleep_seq_show");

for (i = 0; i <= ACPI_STATE_S5; i++) {
if (sleep_states[i]) {
seq_printf(seq, "S%d ", i);
Expand Down Expand Up @@ -93,8 +91,6 @@ static int acpi_system_alarm_seq_show(struct seq_file *seq, void *offset)
unsigned char rtc_control = 0;
unsigned long flags;

ACPI_FUNCTION_TRACE("acpi_system_alarm_seq_show");

spin_lock_irqsave(&rtc_lock, flags);

sec = CMOS_READ(RTC_SECONDS_ALARM);
Expand Down Expand Up @@ -227,13 +223,11 @@ acpi_system_write_alarm(struct file *file,
int adjust = 0;
unsigned char rtc_control = 0;

ACPI_FUNCTION_TRACE("acpi_system_write_alarm");

if (count > sizeof(alarm_string) - 1)
return_VALUE(-EINVAL);
return -EINVAL;

if (copy_from_user(alarm_string, buffer, count))
return_VALUE(-EFAULT);
return -EFAULT;

alarm_string[count] = '\0';

Expand Down Expand Up @@ -334,7 +328,7 @@ acpi_system_write_alarm(struct file *file,

result = 0;
end:
return_VALUE(result ? result : count);
return result ? result : count;
}
#endif /* HAVE_ACPI_LEGACY_ALARM */

Expand Down

0 comments on commit 95d9a7a

Please sign in to comment.