diff options
author | Liu Jinsong <jinsong.liu@intel.com> | 2013-01-25 02:42:31 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-02-19 22:02:28 -0500 |
commit | 40a58637a4fa10a2faea71f0f30ff0b3d74c6e00 (patch) | |
tree | e7fe9fcfb7f0bdca91152b8cef0fc08d6e224024 /drivers/xen | |
parent | b22ff77b82598ff131d215627533e09e4a472220 (diff) |
xen/acpi: Move xen_acpi_get_pxm to Xen's acpi.h
So that it could be reused by Xen CPU hotplug logic.
Signed-off-by: Liu, Jinsong <jinsong.liu@intel.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xen-acpi-memhotplug.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/xen/xen-acpi-memhotplug.c b/drivers/xen/xen-acpi-memhotplug.c index 2c3759ac10f0..678680cb213c 100644 --- a/drivers/xen/xen-acpi-memhotplug.c +++ b/drivers/xen/xen-acpi-memhotplug.c | |||
@@ -65,24 +65,6 @@ static int xen_hotadd_memory(int pxm, struct acpi_memory_info *info) | |||
65 | return rc; | 65 | return rc; |
66 | } | 66 | } |
67 | 67 | ||
68 | static int xen_acpi_get_pxm(acpi_handle h) | ||
69 | { | ||
70 | unsigned long long pxm; | ||
71 | acpi_status status; | ||
72 | acpi_handle handle; | ||
73 | acpi_handle phandle = h; | ||
74 | |||
75 | do { | ||
76 | handle = phandle; | ||
77 | status = acpi_evaluate_integer(handle, "_PXM", NULL, &pxm); | ||
78 | if (ACPI_SUCCESS(status)) | ||
79 | return pxm; | ||
80 | status = acpi_get_parent(handle, &phandle); | ||
81 | } while (ACPI_SUCCESS(status)); | ||
82 | |||
83 | return -ENXIO; | ||
84 | } | ||
85 | |||
86 | static int xen_acpi_memory_enable_device(struct acpi_memory_device *mem_device) | 68 | static int xen_acpi_memory_enable_device(struct acpi_memory_device *mem_device) |
87 | { | 69 | { |
88 | int pxm, result; | 70 | int pxm, result; |