]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
i2c: xiic: fix spelling mistake: "unexpexted" -> "unexpected"
authorColin Ian King <colin.king@canonical.com>
Mon, 14 May 2018 17:15:52 +0000 (18:15 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 17 May 2018 13:51:59 +0000 (15:51 +0200)
Trivial fix to spelling mistakes in dev_dbg messages

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-xiic.c

index c80527816ad0ab99b52b92b36d1f70bcf867a33f..92def988d3c744f616e099c5a7eb77cc40ae7d3a 100644 (file)
@@ -415,7 +415,7 @@ static irqreturn_t xiic_process(int irq, void *dev_id)
                clr |= XIIC_INTR_RX_FULL_MASK;
                if (!i2c->rx_msg) {
                        dev_dbg(i2c->adap.dev.parent,
-                               "%s unexpexted RX IRQ\n", __func__);
+                               "%s unexpected RX IRQ\n", __func__);
                        xiic_clear_rx_fifo(i2c);
                        goto out;
                }
@@ -470,7 +470,7 @@ static irqreturn_t xiic_process(int irq, void *dev_id)
 
                if (!i2c->tx_msg) {
                        dev_dbg(i2c->adap.dev.parent,
-                               "%s unexpexted TX IRQ\n", __func__);
+                               "%s unexpected TX IRQ\n", __func__);
                        goto out;
                }