svn commit: r210998 - in head: share/man/man4 sys/dev/iicbus
Joel Dahl
joel at FreeBSD.org
Sat Aug 7 08:31:33 UTC 2010
Author: joel (doc committer)
Date: Sat Aug 7 08:31:32 2010
New Revision: 210998
URL: http://svn.freebsd.org/changeset/base/210998
Log:
Fix typo in comment.
Modified:
head/share/man/man4/iic.4
head/sys/dev/iicbus/iic.h
Modified: head/share/man/man4/iic.4
==============================================================================
--- head/share/man/man4/iic.4 Sat Aug 7 08:08:14 2010 (r210997)
+++ head/share/man/man4/iic.4 Sat Aug 7 08:31:32 2010 (r210998)
@@ -144,7 +144,7 @@ struct iic_msg
uint16_t slave;
uint16_t flags;
#define IIC_M_RD 0x0001 /* read vs write */
- uint16_t len; /* msg legnth */
+ uint16_t len; /* msg length */
uint8_t * buf;
};
Modified: head/sys/dev/iicbus/iic.h
==============================================================================
--- head/sys/dev/iicbus/iic.h Sat Aug 7 08:08:14 2010 (r210997)
+++ head/sys/dev/iicbus/iic.h Sat Aug 7 08:31:32 2010 (r210998)
@@ -40,7 +40,7 @@ struct iic_msg
#define IIC_M_RD 0x0001 /* read vs write */
#define IIC_M_NOSTOP 0x0002 /* do not send a I2C stop after message */
#define IIC_M_NOSTART 0x0004 /* do not send a I2C start before message */
- uint16_t len; /* msg legnth */
+ uint16_t len; /* msg length */
uint8_t * buf;
};
More information about the svn-src-all
mailing list