[PATCH 1/2] i2c: busses: fix typos in comments
From: Hemanth Selam <hidden>
Date: 2026-09-04 10:50:23
Also in:
linux-arm-kernel, linux-i2c, lkml
Subsystem:
arm/sti architecture, freescale i2c cpm driver, i2c subsystem, i2c subsystem host drivers, the rest · Maintainers:
Patrice Chotard, Jochen Friedrich, Andi Shyti, Linus Torvalds
Fix typos in comments, reported by scripts/checkpatch.pl using the misspelling list in scripts/spelling.txt. Only touches comments, no code changes. Assisted-by: Cursor:claude-opus-5 Signed-off-by: Hemanth Selam <redacted> --- drivers/i2c/busses/i2c-axxia.c | 2 +- drivers/i2c/busses/i2c-bcm-kona.c | 2 +- drivers/i2c/busses/i2c-cpm.c | 2 +- drivers/i2c/busses/i2c-st.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/i2c/busses/i2c-axxia.c b/drivers/i2c/busses/i2c-axxia.c
index 0555eeb6903a..62dc55c146f0 100644
--- a/drivers/i2c/busses/i2c-axxia.c
+++ b/drivers/i2c/busses/i2c-axxia.c@@ -60,7 +60,7 @@ #define MST_RX_FIFO 0x44 #define MST_INT_ENABLE 0x48 #define MST_INT_STATUS 0x4c -#define MST_STATUS_RFL (1 << 13) /* RX FIFO serivce */ +#define MST_STATUS_RFL (1 << 13) /* RX FIFO service */ #define MST_STATUS_TFL (1 << 12) /* TX FIFO service */ #define MST_STATUS_SNS (1 << 11) /* Manual mode done */ #define MST_STATUS_SS (1 << 10) /* Automatic mode done */
diff --git a/drivers/i2c/busses/i2c-bcm-kona.c b/drivers/i2c/busses/i2c-bcm-kona.c
index d4f287b31fd7..0c30821e7b0a 100644
--- a/drivers/i2c/busses/i2c-bcm-kona.c
+++ b/drivers/i2c/busses/i2c-bcm-kona.c@@ -12,7 +12,7 @@ #include <linux/io.h> #include <linux/slab.h> -/* Hardware register offsets and field defintions */ +/* Hardware register offsets and field definitions */ #define CS_OFFSET 0x00000020 #define CS_ACK_SHIFT 3 #define CS_ACK_MASK 0x00000008
diff --git a/drivers/i2c/busses/i2c-cpm.c b/drivers/i2c/busses/i2c-cpm.c
index 2cb6a233d313..c8b72f14d179 100644
--- a/drivers/i2c/busses/i2c-cpm.c
+++ b/drivers/i2c/busses/i2c-cpm.c@@ -334,7 +334,7 @@ static int cpm_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) tptr++; } /* Start transfer now */ - /* Enable RX/TX/Error interupts */ + /* Enable RX/TX/Error interrupts */ out_8(&i2c_reg->i2cmr, I2CER_TXE | I2CER_TXB | I2CER_RXB); out_8(&i2c_reg->i2cer, 0xff); /* Clear interrupt status */ /* Chip bug, set enable here */
diff --git a/drivers/i2c/busses/i2c-st.c b/drivers/i2c/busses/i2c-st.c
index 0a2b43b5577b..873ce2f5a406 100644
--- a/drivers/i2c/busses/i2c-st.c
+++ b/drivers/i2c/busses/i2c-st.c@@ -256,7 +256,7 @@ static void st_i2c_flush_rx_fifo(struct st_i2c_dev *i2c_dev) static void st_i2c_soft_reset(struct st_i2c_dev *i2c_dev) { /* - * FIFO needs to be emptied before reseting the IP, + * FIFO needs to be emptied before resetting the IP, * else the controller raises a BUSY error. */ st_i2c_flush_rx_fifo(i2c_dev);
--
2.48.1