Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Oct 2019 18:45:12 +0000 (UTC)
From:      Conrad Meyer <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r353691 - head/sys/dev/acpica
Message-ID:  <201910171845.x9HIjCdi070480@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cem
Date: Thu Oct 17 18:45:11 2019
New Revision: 353691
URL: https://svnweb.freebsd.org/changeset/base/353691

Log:
  acpica: Match ID_PROBE default implementation to interface
  
  After r339754, the additional interface parameter was accidentally left out
  of the default acpi_generic_id_probe implementation.  Apparently this does
  not cause any real problems, so this fix is mostly stylistic.
  
  No functional change intended.
  
  X-MFC-With:	r339754

Modified:
  head/sys/dev/acpica/acpi_if.m

Modified: head/sys/dev/acpica/acpi_if.m
==============================================================================
--- head/sys/dev/acpica/acpi_if.m	Thu Oct 17 18:29:44 2019	(r353690)
+++ head/sys/dev/acpica/acpi_if.m	Thu Oct 17 18:45:11 2019	(r353691)
@@ -62,7 +62,8 @@ HEADER {
 #
 CODE {
 	static char *
-	acpi_generic_id_probe(device_t bus, device_t dev, char **ids)
+	acpi_generic_id_probe(device_t bus, device_t dev, char **ids,
+	    char **match)
 	{
 		return (NULL);
 	}



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