From owner-svn-src-all@FreeBSD.ORG Sat Aug 7 08:31:33 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2497D1065670; Sat, 7 Aug 2010 08:31:33 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1409B8FC14; Sat, 7 Aug 2010 08:31:33 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o778VWKo084415; Sat, 7 Aug 2010 08:31:32 GMT (envelope-from joel@svn.freebsd.org) Received: (from joel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o778VWXG084412; Sat, 7 Aug 2010 08:31:32 GMT (envelope-from joel@svn.freebsd.org) Message-Id: <201008070831.o778VWXG084412@svn.freebsd.org> From: Joel Dahl Date: Sat, 7 Aug 2010 08:31:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210998 - in head: share/man/man4 sys/dev/iicbus X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2010 08:31:33 -0000 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; };