]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
i2c: ihs: intel: Fix typo in comments (actual)
authorMichal Simek <michal.simek@xilinx.com>
Tue, 19 Apr 2022 13:01:31 +0000 (15:01 +0200)
committerHeiko Schocher <hs@denx.de>
Tue, 10 May 2022 04:47:13 +0000 (06:47 +0200)
s/actucal/actual/g

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
drivers/i2c/ihs_i2c.c
drivers/i2c/intel_i2c.c

index ecca90628e79e0d0c23b637ff336d71c01f75ff5..d715714638fff1c1b1567afb5fb33cfe82cd6242 100644 (file)
@@ -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__);
index dc26fa8c5427318f78b20dbf0c10c8948f9ca1fd..4fc6f1a11a7585d2b949f171a76e0ca19b0b1c3c 100644 (file)
@@ -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__);