diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-24 17:25:10 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-02-03 12:39:27 -0500 |
commit | 486c79b5002e4a75c1c3614180702196ec6d904d (patch) | |
tree | 975743ad7c40456e5a022e3d3509bd4c3ecc05e5 /drivers/acpi/numa.c | |
parent | b1e9cee7f68620fa2a020e35b5fbe3c4cc780e84 (diff) |
ACPI / numa: Fix acpi_get_node() prototype
acpi_get_node() takes an acpi_handle, not an "acpi_handle *". This
fixes the prototype and the definitions.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/numa.c')
-rw-r--r-- | drivers/acpi/numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/numa.c b/drivers/acpi/numa.c index 9e6816ef280a..dab7dac6b1a8 100644 --- a/drivers/acpi/numa.c +++ b/drivers/acpi/numa.c | |||
@@ -331,7 +331,7 @@ int acpi_get_pxm(acpi_handle h) | |||
331 | return -1; | 331 | return -1; |
332 | } | 332 | } |
333 | 333 | ||
334 | int acpi_get_node(acpi_handle *handle) | 334 | int acpi_get_node(acpi_handle handle) |
335 | { | 335 | { |
336 | int pxm, node = NUMA_NO_NODE; | 336 | int pxm, node = NUMA_NO_NODE; |
337 | 337 | ||