From: Alex Chiang Date: Sun, 20 Dec 2009 19:23:21 +0000 (-0700) Subject: ACPI: processor: remove _PDC object list from struct acpi_processor X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e59897fe443b5b0a71e135ef4020d1937c9f8901;p=deliverable%2Flinux.git ACPI: processor: remove _PDC object list from struct acpi_processor When we call _PDC, we get a handle to the processor, allocate the object list buffer as needed, and free it immediately after calling _PDC. There's no need to drag around this object list with us everywhere else, so let's just get rid of it. Signed-off-by: Alex Chiang Signed-off-by: Len Brown --- diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 7cc433d69932..0ea5ef4eb6a9 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h @@ -224,8 +224,6 @@ struct acpi_processor { struct acpi_processor_throttling throttling; struct acpi_processor_limit limit; struct thermal_cooling_device *cdev; - /* the _PDC objects for this processor, if any */ - struct acpi_object_list *pdc; }; struct acpi_processor_errata {