There are no callers, and the non-stub implementation is #if 0'd out, with the
internal trying to perform an AML invocation.
There's no plausible way that code is getting un-#if 0'd, so drop it.
No functional change.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
acpi_numa_arch_fixup();
return 0;
}
-
-#if 0
-int acpi_get_pxm(acpi_handle h)
-{
- unsigned long pxm;
- acpi_status status;
- acpi_handle handle;
- acpi_handle phandle = h;
-
- do {
- handle = phandle;
- status = acpi_evaluate_integer(handle, "_PXM", NULL, &pxm);
- if (ACPI_SUCCESS(status))
- return (int)pxm;
- status = acpi_get_parent(handle, &phandle);
- } while (ACPI_SUCCESS(status));
- return -1;
-}
-
-EXPORT_SYMBOL(acpi_get_pxm);
-#endif
#endif
int arch_acpi_set_pdc_bits(u32 acpi_id, u32 *, u32 mask);
-#ifdef CONFIG_ACPI_NUMA
-int acpi_get_pxm(acpi_handle handle);
-#else
-static inline int acpi_get_pxm(acpi_handle handle)
-{
- return 0;
-}
-#endif
-
void acpi_reboot(void);
#ifdef CONFIG_INTEL_IOMMU