[PATCH 1/3] i2c: imx_lpi2c: Fix a typo in bus_i2c_receive
fedorross at gmail.com
fedorross at gmail.com
Wed Jul 24 11:59:41 CEST 2024
From: Fedor Ross <fedor.ross at ifm.com>
Fix a typo in a debug message. It should be 'for' not 'fot' .
Signed-off-by: Fedor Ross <fedor.ross at ifm.com>
Cc: Heiko Schocher <hs at denx.de>
Cc: Tom Rini <trini at konsulko.com>
Cc: Marek Vasut <marex at denx.de>
---
drivers/i2c/imx_lpi2c.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
--
2.34.1
More information about the U-Boot
mailing list