aboutsummaryrefslogtreecommitdiff
path: root/drivers/i2c
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2022-04-19 15:01:31 +0200
committerHeiko Schocher <hs@denx.de>2022-05-10 06:47:13 +0200
commita6cc0b082f0ec14695c2813bbf0de702080d1352 (patch)
treec427b877d3773762287925b7619f98933a25f0f9 /drivers/i2c
parentf6973cce6af066d28980c9f82c99cb4e10af8a6f (diff)
downloadu-boot-a6cc0b082f0ec14695c2813bbf0de702080d1352.zip
u-boot-a6cc0b082f0ec14695c2813bbf0de702080d1352.tar.gz
u-boot-a6cc0b082f0ec14695c2813bbf0de702080d1352.tar.bz2
i2c: ihs: intel: Fix typo in comments (actual)
s/actucal/actual/g Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/ihs_i2c.c2
-rw-r--r--drivers/i2c/intel_i2c.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/ihs_i2c.c b/drivers/i2c/ihs_i2c.c
index ecca906..d715714 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__);
diff --git a/drivers/i2c/intel_i2c.c b/drivers/i2c/intel_i2c.c
index dc26fa8..4fc6f1a 100644
--- a/drivers/i2c/intel_i2c.c
+++ b/drivers/i2c/intel_i2c.c
@@ -213,7 +213,7 @@ static int intel_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
/*
* 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", __func__);