svn commit: r322475 - head/sys/dev/iicbus

Ian Lepore ian at FreeBSD.org
Sun Aug 13 21:45:47 UTC 2017


Author: ian
Date: Sun Aug 13 21:45:46 2017
New Revision: 322475
URL: https://svnweb.freebsd.org/changeset/base/322475

Log:
  Change "chiptype" to "compatible".  Making the hint name the same as the FDT
  property name should make it easier to document the list of names accepted
  by both configuration mechanisms.

Modified:
  head/sys/dev/iicbus/ds13rtc.c

Modified: head/sys/dev/iicbus/ds13rtc.c
==============================================================================
--- head/sys/dev/iicbus/ds13rtc.c	Sun Aug 13 21:11:48 2017	(r322474)
+++ head/sys/dev/iicbus/ds13rtc.c	Sun Aug 13 21:45:46 2017	(r322475)
@@ -495,7 +495,7 @@ ds13rtc_get_chiptype(device_t dev)
 	 * We can only attach if provided a chiptype hint string.
 	 */
 	if (resource_string_value(device_get_name(dev), 
-	    device_get_unit(dev), "chiptype", &htype) != 0)
+	    device_get_unit(dev), "compatible", &htype) != 0)
 		return (TYPE_NONE);
 
 	/*


More information about the svn-src-head mailing list