1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Fix typo in comment.

This commit is contained in:
Joel Dahl 2010-08-07 08:31:32 +00:00
parent be80264279
commit 7f22a6d334
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210998
2 changed files with 2 additions and 2 deletions

View File

@ -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;
};

View File

@ -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;
};