svn commit: r353691 - head/sys/dev/acpica
Conrad Meyer
cem at FreeBSD.org
Thu Oct 17 18:45:12 UTC 2019
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);
}
More information about the svn-src-all
mailing list