thermal: Replace acpi_bus_get_device()

Replace acpi_bus_get_device() that is going to be dropped with
acpi_fetch_acpi_dev().

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Rafael J. Wysocki 2022-01-26 20:45:17 +01:00
parent 38b16d6cfe
commit 098c874e20

View File

@ -72,7 +72,6 @@ int acpi_parse_trt(acpi_handle handle, int *trt_count, struct trt **trtp,
int i; int i;
int nr_bad_entries = 0; int nr_bad_entries = 0;
struct trt *trts; struct trt *trts;
struct acpi_device *adev;
union acpi_object *p; union acpi_object *p;
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
struct acpi_buffer element = { 0, NULL }; struct acpi_buffer element = { 0, NULL };
@ -112,12 +111,10 @@ int acpi_parse_trt(acpi_handle handle, int *trt_count, struct trt **trtp,
if (!create_dev) if (!create_dev)
continue; continue;
result = acpi_bus_get_device(trt->source, &adev); if (!acpi_fetch_acpi_dev(trt->source))
if (result)
pr_warn("Failed to get source ACPI device\n"); pr_warn("Failed to get source ACPI device\n");
result = acpi_bus_get_device(trt->target, &adev); if (!acpi_fetch_acpi_dev(trt->target))
if (result)
pr_warn("Failed to get target ACPI device\n"); pr_warn("Failed to get target ACPI device\n");
} }
@ -149,7 +146,6 @@ int acpi_parse_art(acpi_handle handle, int *art_count, struct art **artp,
int i; int i;
int nr_bad_entries = 0; int nr_bad_entries = 0;
struct art *arts; struct art *arts;
struct acpi_device *adev;
union acpi_object *p; union acpi_object *p;
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
struct acpi_buffer element = { 0, NULL }; struct acpi_buffer element = { 0, NULL };
@ -191,16 +187,11 @@ int acpi_parse_art(acpi_handle handle, int *art_count, struct art **artp,
if (!create_dev) if (!create_dev)
continue; continue;
if (art->source) { if (!acpi_fetch_acpi_dev(art->source))
result = acpi_bus_get_device(art->source, &adev); pr_warn("Failed to get source ACPI device\n");
if (result)
pr_warn("Failed to get source ACPI device\n"); if (!acpi_fetch_acpi_dev(art->target))
} pr_warn("Failed to get target ACPI device\n");
if (art->target) {
result = acpi_bus_get_device(art->target, &adev);
if (result)
pr_warn("Failed to get target ACPI device\n");
}
} }
*artp = arts; *artp = arts;