Module Name: src
Committed By: thorpej
Date: Mon Apr 5 01:28:00 UTC 2021
Modified Files:
src/sys/dev/i2c [thorpej-cfargs]: i2c.c
Log Message:
config_match() -> config_probe(). It's a little over-loaded here because
we're mixing direct and indirect in the same place, but that will be
addresed at a later time.
To generate a diff of this commit:
cvs rdiff -u -r1.77.2.7 -r1.77.2.8 src/sys/dev/i2c/i2c.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/i2c/i2c.c
diff -u src/sys/dev/i2c/i2c.c:1.77.2.7 src/sys/dev/i2c/i2c.c:1.77.2.8
--- src/sys/dev/i2c/i2c.c:1.77.2.7 Sun Apr 4 22:01:22 2021
+++ src/sys/dev/i2c/i2c.c Mon Apr 5 01:27:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: i2c.c,v 1.77.2.7 2021/04/04 22:01:22 thorpej Exp $ */
+/* $NetBSD: i2c.c,v 1.77.2.8 2021/04/05 01:27:59 thorpej Exp $ */
/*
* Copyright (c) 2003 Wasabi Systems, Inc.
@@ -40,7 +40,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i2c.c,v 1.77.2.7 2021/04/04 22:01:22 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i2c.c,v 1.77.2.8 2021/04/05 01:27:59 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -343,7 +343,7 @@ iic_search(device_t parent, cfdata_t cf,
* us from having to poke at the bus to see if anything
* is there.
*/
- match_result = config_match(parent, cf, &ia);
+ match_result = config_probe(parent, cf, &ia);/*XXX*/
if (match_result <= 0)
continue;