From 1b424b5655e6f97abd3e31c484aad5c21bc11ad9 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 27 Apr 2016 21:12:05 +0000 Subject: [PATCH] Adjust prototypes for NUMA-related functions to match the style of the rest of this file. --- sys/dev/acpica/acpivar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/acpica/acpivar.h b/sys/dev/acpica/acpivar.h index dd1ceeb3bbff..56b634f01a20 100644 --- a/sys/dev/acpica/acpivar.h +++ b/sys/dev/acpica/acpivar.h @@ -505,9 +505,9 @@ SYSCTL_DECL(_debug_acpi); * * Returns the VM domain ID if found, or -1 if not found / invalid. */ -extern int acpi_map_pxm_to_vm_domainid(int pxm); -extern int acpi_get_domain(device_t dev, device_t child, int *domain); -extern int acpi_parse_pxm(device_t dev, int *domain); +int acpi_map_pxm_to_vm_domainid(int pxm); +int acpi_get_domain(device_t dev, device_t child, int *domain); +int acpi_parse_pxm(device_t dev, int *domain); #endif /* _KERNEL */ #endif /* !_ACPIVAR_H_ */