Module Name: src
Committed By: thorpej
Date: Tue May 18 23:26:46 UTC 2021
Modified Files:
src/sys/dev/i2c [thorpej-i2c-spi-conf]: i2c.c
Log Message:
Correct a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.78.2.6 -r1.78.2.7 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.78.2.6 src/sys/dev/i2c/i2c.c:1.78.2.7
--- src/sys/dev/i2c/i2c.c:1.78.2.6 Mon May 17 00:05:56 2021
+++ src/sys/dev/i2c/i2c.c Tue May 18 23:26:46 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: i2c.c,v 1.78.2.6 2021/05/17 00:05:56 thorpej Exp $ */
+/* $NetBSD: i2c.c,v 1.78.2.7 2021/05/18 23:26:46 thorpej Exp $ */
/*-
* Copyright (c) 2021 The NetBSD Foundation, Inc.
@@ -69,7 +69,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i2c.c,v 1.78.2.6 2021/05/17 00:05:56 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i2c.c,v 1.78.2.7 2021/05/18 23:26:46 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -678,9 +678,8 @@ iic_attach(device_t parent, device_t sel
aprint_error_dev(self, "couldn't establish power handler\n");
/*
- * Attempt to enumerate the devices on the bus. If
- * there is no enumeration method, or no devices are
- * found, then we will attempt indirect configuration.
+ * Attempt to enumerate the devices on the bus. If there is no
+ * enumeration method, then we will attempt indirect configuration.
*/
struct i2c_enumerate_devices_args enumargs;
struct i2c_attach_args ia;