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);
        }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to