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

Ian Lepore ian at FreeBSD.org
Thu Jul 18 01:37:01 UTC 2019


Author: ian
Date: Thu Jul 18 01:37:00 2019
New Revision: 350106
URL: https://svnweb.freebsd.org/changeset/base/350106

Log:
  Fix a paste-o, set is212x = false for other chip types.  Doh!

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

Modified: head/sys/dev/iicbus/nxprtc.c
==============================================================================
--- head/sys/dev/iicbus/nxprtc.c	Thu Jul 18 01:33:00 2019	(r350105)
+++ head/sys/dev/iicbus/nxprtc.c	Thu Jul 18 01:37:00 2019	(r350106)
@@ -360,7 +360,7 @@ pcf8523_start(struct nxprtc_softc *sc)
 		is212x = true;
 		break;
 	default:
-		is212x = true;
+		is212x = false;
 		break;
 	}
 


More information about the svn-src-all mailing list