Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ee7cdbf authored by Colin Ian King's avatar Colin Ian King Committed by Wolfram Sang
Browse files

i2c: xiic: fix spelling mistake: "unexpexted" -> "unexpected"



Trivial fix to spelling mistakes in dev_dbg messages

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 5e87270b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
		}