everywhere: fix typos

Fix a lot of typos

Signed-off-by: Nazar Kazakov <nazar.kazakov.work@gmail.com>
This commit is contained in:
Nazar Kazakov 2022-03-16 21:07:43 +00:00 committed by Anas Nashif
commit f483b1bc4c
757 changed files with 1284 additions and 1284 deletions

View file

@ -429,7 +429,7 @@ static int i2c_gd32_transfer(const struct device *dev,
current = msgs;
/* First message flags implict contain I2C_MSG_RESTART flag. */
/* First message flags implicitly contain I2C_MSG_RESTART flag. */
current->flags |= I2C_MSG_RESTART;
for (uint8_t i = 1; i <= num_msgs; i++) {
@ -453,7 +453,7 @@ static int i2c_gd32_transfer(const struct device *dev,
return -EINVAL;
}
} else {
/* Last message flags implict contain I2C_MSG_STOP flag. */
/* Last message flags implicitly contain I2C_MSG_STOP flag. */
current->flags |= I2C_MSG_STOP;
}

View file

@ -298,7 +298,7 @@ static inline void i2c_ctrl_fifo_clear_status(const struct device *dev)
/*
* I2C local functions which touch the registers in 'Normal' bank. These
* utilities will change bank back to FIFO mode when leaving themselves in case
* the other utilities acces the registers in 'FIFO' bank.
* the other utilities access the registers in 'FIFO' bank.
*/
static void i2c_ctrl_hold_bus(const struct device *dev, int stall)
{

View file

@ -12,7 +12,7 @@
*
* This file contains the driver of SMBus/I2C buses (ports) which provides
* pin-muxing for each i2c io-pads. In order to support "SMBus Multi-Bus"
* feature, please refer the diagram below, the driver alsp provides connection
* feature, please refer the diagram below, the driver also provides connection
* between Zephyr i2c api functions and i2c controller driver which provides
* full support for SMBus/I2C transactions.
*