diff options
author | Fedor Ross <fedor.ross@ifm.com> | 2024-08-07 16:07:59 +0200 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2024-08-09 14:46:49 +0200 |
commit | ed1842623f6c8805fd75704a71c6fbf3af6b8327 (patch) | |
tree | 0ee849c6f97f85cfca50e00a84ef9f604f6aab7b /drivers/i2c/imx_lpi2c.c | |
parent | 101f4e669d1f976032ac5e2165e4b415ab61a41d (diff) |
i2c: imx_lpi2c: Fix a typo in bus_i2c_receive
Fix a typo in a debug message. It should be 'for' not 'fot' .
Signed-off-by: Fedor Ross <fedor.ross@ifm.com>
Diffstat (limited to 'drivers/i2c/imx_lpi2c.c')
-rw-r--r-- | drivers/i2c/imx_lpi2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/imx_lpi2c.c b/drivers/i2c/imx_lpi2c.c index a1be841b119..3c43f61d819 100644 --- a/drivers/i2c/imx_lpi2c.c +++ b/drivers/i2c/imx_lpi2c.c @@ -130,7 +130,7 @@ static int bus_i2c_receive(struct udevice *bus, u8 *rxbuf, int len) result = bus_i2c_wait_for_tx_ready(regs); if (result) { - debug("i2c: receive wait fot tx ready: %d\n", result); + debug("i2c: receive wait for tx ready: %d\n", result); return result; } |