diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-24 17:48:01 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-02-03 12:39:38 -0500 |
commit | d79ed248d923f219053760376a33371894a6d47c (patch) | |
tree | 1c40dcbbf21da3902d4766290e93c33409e44775 /drivers/acpi | |
parent | 962fe9c91c5faa271e21c6ef589ff1df02fa13ed (diff) |
ACPI / numa: Make __acpi_map_pxm_to_node(), acpi_get_pxm() static
__acpi_map_pxm_to_node() and acpi_get_pxm() are only used within
drivers/acpi/numa.c. This makes them static and removes their
declarations.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/numa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/numa.c b/drivers/acpi/numa.c index a7e779bfa2f6..359a43bdd948 100644 --- a/drivers/acpi/numa.c +++ b/drivers/acpi/numa.c | |||
@@ -60,7 +60,7 @@ int node_to_pxm(int node) | |||
60 | return node_to_pxm_map[node]; | 60 | return node_to_pxm_map[node]; |
61 | } | 61 | } |
62 | 62 | ||
63 | void __acpi_map_pxm_to_node(int pxm, int node) | 63 | static void __acpi_map_pxm_to_node(int pxm, int node) |
64 | { | 64 | { |
65 | if (pxm_to_node_map[pxm] == NUMA_NO_NODE || node < pxm_to_node_map[pxm]) | 65 | if (pxm_to_node_map[pxm] == NUMA_NO_NODE || node < pxm_to_node_map[pxm]) |
66 | pxm_to_node_map[pxm] = node; | 66 | pxm_to_node_map[pxm] = node; |
@@ -314,7 +314,7 @@ int __init acpi_numa_init(void) | |||
314 | return 0; | 314 | return 0; |
315 | } | 315 | } |
316 | 316 | ||
317 | int acpi_get_pxm(acpi_handle h) | 317 | static int acpi_get_pxm(acpi_handle h) |
318 | { | 318 | { |
319 | unsigned long long pxm; | 319 | unsigned long long pxm; |
320 | acpi_status status; | 320 | acpi_status status; |