Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29167
b: refs/heads/master
c: 9011bff
h: refs/heads/master
i:
  29165: f7f735c
  29163: 3b40b7a
  29159: 4362120
  29151: c94be8a
v: v3
  • Loading branch information
Len Brown committed May 11, 2006
1 parent fddae7d commit 54074ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e1f19e50371e1d148226b64c8edc77fec47fa5b
refs/heads/master: 9011bff4bdc0fef1f9a782d7415c306ee61826c9
10 changes: 3 additions & 7 deletions trunk/drivers/acpi/processor_perflib.c
Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,9 @@ static int acpi_processor_get_psd(struct acpi_processor *pr)
union acpi_object *psd = NULL;
struct acpi_psd_package *pdomain;

ACPI_FUNCTION_TRACE("acpi_processor_get_psd");

status = acpi_evaluate_object(pr->handle, "_PSD", NULL, &buffer);
if (ACPI_FAILURE(status)) {
return_VALUE(-ENODEV);
return -ENODEV;
}

psd = (union acpi_object *) buffer.pointer;
Expand Down Expand Up @@ -610,7 +608,7 @@ static int acpi_processor_get_psd(struct acpi_processor *pr)

end:
acpi_os_free(buffer.pointer);
return_VALUE(result);
return result;
}

int acpi_processor_preregister_performance(
Expand All @@ -625,8 +623,6 @@ int acpi_processor_preregister_performance(
struct acpi_processor *match_pr;
struct acpi_psd_package *match_pdomain;

ACPI_FUNCTION_TRACE("acpi_processor_preregister_performance");

down(&performance_sem);

retval = 0;
Expand Down Expand Up @@ -776,7 +772,7 @@ int acpi_processor_preregister_performance(
}

up(&performance_sem);
return_VALUE(retval);
return retval;
}
EXPORT_SYMBOL(acpi_processor_preregister_performance);

Expand Down

0 comments on commit 54074ff

Please sign in to comment.