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>
This commit is contained in:
Bjorn Helgaas 2014-01-24 15:25:10 -07:00
parent b1e9cee7f6
commit 486c79b500
2 changed files with 3 additions and 3 deletions

View file

@ -331,7 +331,7 @@ int acpi_get_pxm(acpi_handle h)
return -1;
}
int acpi_get_node(acpi_handle *handle)
int acpi_get_node(acpi_handle handle)
{
int pxm, node = NUMA_NO_NODE;

View file

@ -260,13 +260,13 @@ extern void acpi_osi_setup(char *str);
#ifdef CONFIG_ACPI_NUMA
int acpi_get_pxm(acpi_handle handle);
int acpi_get_node(acpi_handle *handle);
int acpi_get_node(acpi_handle handle);
#else
static inline int acpi_get_pxm(acpi_handle handle)
{
return 0;
}
static inline int acpi_get_node(acpi_handle *handle)
static inline int acpi_get_node(acpi_handle handle)
{
return 0;
}