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

Ian Lepore ian at FreeBSD.org
Sat Oct 10 02:06:09 UTC 2015


Author: ian
Date: Sat Oct 10 02:06:07 2015
New Revision: 289104
URL: https://svnweb.freebsd.org/changeset/base/289104

Log:
  Add a short name, IIC_INTRWAIT, for the common case (IIC_INTR | IIC_WAIT).

Modified:
  head/sys/dev/iicbus/iiconf.h

Modified: head/sys/dev/iicbus/iiconf.h
==============================================================================
--- head/sys/dev/iicbus/iiconf.h	Sat Oct 10 01:41:07 2015	(r289103)
+++ head/sys/dev/iicbus/iiconf.h	Sat Oct 10 02:06:07 2015	(r289104)
@@ -43,6 +43,7 @@
 #define IIC_NOINTR	0
 #define IIC_WAIT	0x1
 #define IIC_INTR	0x2
+#define IIC_INTRWAIT	(IIC_INTR | IIC_WAIT)
 
 /*
  * i2c modes


More information about the svn-src-all mailing list