diff options
author | Tom Rini <trini@konsulko.com> | 2022-05-10 09:52:00 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-05-10 09:52:00 -0400 |
commit | b4eb57766314062e3dd1ee8e439d2cb2d5dc33d8 (patch) | |
tree | 2161a0dd42795cf4ce95199285a17bb409e7ce26 /drivers/i2c/ihs_i2c.c | |
parent | 381277410d72b6081db8412024b9d5496b4bafd1 (diff) | |
parent | 89eabd2f3562115ee56cdad03324cc748f78d177 (diff) |
Merge tag 'i2c-2022-07' of https://source.denx.de/u-boot/custodians/u-boot-i2c
i2c changes for 2022.07
- i2c: ihs: intel: Fix typo in comments
Patch from Michal
- misc: atsha204a: Add support for atsha204 chip
from Pali
Diffstat (limited to 'drivers/i2c/ihs_i2c.c')
-rw-r--r-- | drivers/i2c/ihs_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/ihs_i2c.c b/drivers/i2c/ihs_i2c.c index ecca90628e7..d715714638f 100644 --- a/drivers/i2c/ihs_i2c.c +++ b/drivers/i2c/ihs_i2c.c @@ -195,7 +195,7 @@ static int ihs_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) memset(&dummy, 0, sizeof(struct i2c_msg)); /* We expect either two messages (one with an offset and one with the - * actucal data) or one message (just data) + * actual data) or one message (just data) */ if (nmsgs > 2 || nmsgs == 0) { debug("%s: Only one or two messages are supported\n", __func__); |