svn commit: r298722 - head/sys/dev/acpica

John Baldwin jhb at FreeBSD.org
Wed Apr 27 21:12:06 UTC 2016


Author: jhb
Date: Wed Apr 27 21:12:05 2016
New Revision: 298722
URL: https://svnweb.freebsd.org/changeset/base/298722

Log:
  Adjust prototypes for NUMA-related functions to match the style of the
  rest of this file.

Modified:
  head/sys/dev/acpica/acpivar.h

Modified: head/sys/dev/acpica/acpivar.h
==============================================================================
--- head/sys/dev/acpica/acpivar.h	Wed Apr 27 20:49:57 2016	(r298721)
+++ head/sys/dev/acpica/acpivar.h	Wed Apr 27 21:12:05 2016	(r298722)
@@ -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_ */


More information about the svn-src-all mailing list