Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Apr 2016 21:12:05 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r298722 - head/sys/dev/acpica
Message-ID:  <201604272112.u3RLC5VB016781@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604272112.u3RLC5VB016781>