Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Aug 2010 08:31:32 +0000 (UTC)
From:      Joel Dahl <joel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r210998 - in head: share/man/man4 sys/dev/iicbus
Message-ID:  <201008070831.o778VWXG084412@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008070831.o778VWXG084412>