summaryrefslogtreecommitdiff
path: root/nuttx/include/nuttx/i2c.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 14:32:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 14:32:20 -0600
commit3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4 (patch)
tree0f3ba3c03a8e8e5e5ddd7ed6658f9aeefd233228 /nuttx/include/nuttx/i2c.h
parentb087a6d8732ffb869f3482c62b1b74e7b1869551 (diff)
downloadnuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.tar.gz
nuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.tar.bz2
nuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.zip
More trailing whilespace removal
Diffstat (limited to 'nuttx/include/nuttx/i2c.h')
-rw-r--r--nuttx/include/nuttx/i2c.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/nuttx/include/nuttx/i2c.h b/nuttx/include/nuttx/i2c.h
index 1b246d583..5e3c3a107 100644
--- a/nuttx/include/nuttx/i2c.h
+++ b/nuttx/include/nuttx/i2c.h
@@ -133,9 +133,9 @@
* Set our own I2C address. Calling this function enables Slave mode and
* disables Master mode on given instance (note that I2C is a bus, where
* multiple masters and slave may be handled by one device driver).
- *
+ *
* One may register a callback to be notified about reception. During the
- * slave mode reception, the function READ and WRITE must be used to
+ * slave mode reception, the function READ and WRITE must be used to
* to handle reads and writes from a master.
*
* Input Parameters:
@@ -199,7 +199,7 @@
*
* Description:
* Send a block of data on I2C using the previously selected I2C
- * frequency and slave address, followed by restarted read access.
+ * frequency and slave address, followed by restarted read access.
* It provides a convenient wrapper to the transfer function.
*
* Input Parameters:
@@ -220,9 +220,9 @@
* Name: I2C_TRANSFER
*
* Description:
- * Perform a sequence of I2C transfers, each transfer is started with a
- * START and the final transfer is completed with a STOP. Each sequence
- * will be an 'atomic' operation in the sense that any other I2C actions
+ * Perform a sequence of I2C transfers, each transfer is started with a
+ * START and the final transfer is completed with a STOP. Each sequence
+ * will be an 'atomic' operation in the sense that any other I2C actions
* will be serialized and pend until this read completes. Optional.
*
* Input Parameters:
@@ -278,7 +278,7 @@ struct i2c_msg_s
};
/* I2C private data. This structure only defines the initial fields of the
- * structure visible to the I2C client. The specific implementation may
+ * structure visible to the I2C client. The specific implementation may
* add additional, device specific fields after the vtable.
*/
@@ -305,7 +305,7 @@ extern "C" {
* Description:
* Initialize the selected I2C port. And return a unique instance of struct
* struct i2c_dev_s. This function may be called to obtain multiple
- * instances of the interface, each of which may be set up with a
+ * instances of the interface, each of which may be set up with a
* different frequency and slave address.
*
* Input Parameter:
@@ -329,7 +329,7 @@ EXTERN FAR struct i2c_dev_s *up_i2cinitialize(int port);
*
* Returned Value:
* OK on success, ERROR when internal reference count mismatch or dev
- * points to invalid hardware device.
+ * points to invalid hardware device.
*
****************************************************************************/