projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
101f4e6
)
i2c: imx_lpi2c: Fix a typo in bus_i2c_receive
author
Fedor Ross
<fedor.ross@ifm.com>
Wed, 7 Aug 2024 14:07:59 +0000
(16:07 +0200)
committer
Heiko Schocher
<hs@denx.de>
Fri, 9 Aug 2024 12:46:49 +0000
(14:46 +0200)
Fix a typo in a debug message. It should be 'for' not 'fot' .
Signed-off-by: Fedor Ross <fedor.ross@ifm.com>
drivers/i2c/imx_lpi2c.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/imx_lpi2c.c
b/drivers/i2c/imx_lpi2c.c
index a1be841b1193429978abe681c6790f064efb1d9c..3c43f61d8194a6927681b004b9d3854686435c65 100644
(file)
--- 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 fo
t
tx ready: %d\n", result);
+ debug("i2c: receive wait fo
r
tx ready: %d\n", result);
return result;
}