[PATCH 1/2] input: fix typos in comments
From: Hemanth Selam <hidden>
Date: 2026-09-04 11:19:20
Also in:
imx, linux-input, lkml
Subsystem:
input (keyboard, mouse, joystick, touchscreen) drivers, the rest · Maintainers:
Dmitry Torokhov, 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/input/keyboard/imx_keypad.c | 2 +- drivers/input/keyboard/pxa27x_keypad.c | 2 +- drivers/input/mouse/elantech.h | 2 +- drivers/input/rmi4/rmi_f54.c | 2 +- drivers/input/touchscreen/exc3000.c | 2 +- drivers/input/touchscreen/usbtouchscreen.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/input/keyboard/imx_keypad.c b/drivers/input/keyboard/imx_keypad.c
index ccde60cd6bb3..9e0898588e06 100644
--- a/drivers/input/keyboard/imx_keypad.c
+++ b/drivers/input/keyboard/imx_keypad.c@@ -396,7 +396,7 @@ static int imx_keypad_open(struct input_dev *dev) imx_keypad_config(keypad); - /* Sanity control, not all the rows must be actived now. */ + /* Sanity control, not all the rows must be activated now. */ if ((readw(keypad->mmio_base + KPDR) & keypad->rows_en_mask) == 0) { dev_err(&dev->dev, "too many keys pressed, control pins initialisation\n");
diff --git a/drivers/input/keyboard/pxa27x_keypad.c b/drivers/input/keyboard/pxa27x_keypad.c
index 4519eecb317b..320021e9d81b 100644
--- a/drivers/input/keyboard/pxa27x_keypad.c
+++ b/drivers/input/keyboard/pxa27x_keypad.c@@ -522,7 +522,7 @@ static void pxa27x_keypad_config(struct pxa27x_keypad *keypad) direct_key_num = keypad->direct_key_num; /* - * Direct keys usage may not start from KP_DKIN0, check the platfrom + * Direct keys usage may not start from KP_DKIN0, check the platform * mask data to config the specific. */ if (!keypad->direct_key_mask)
diff --git a/drivers/input/mouse/elantech.h b/drivers/input/mouse/elantech.h
index 571e6ca11d33..a2ab57a11b64 100644
--- a/drivers/input/mouse/elantech.h
+++ b/drivers/input/mouse/elantech.h@@ -57,7 +57,7 @@ /* * One hard to find application note states that X axis range is 0 to 576 - * and Y axis range is 0 to 384 for harware version 1. + * and Y axis range is 0 to 384 for hardware version 1. * Edge fuzz might be necessary because of bezel around the touchpad */ #define ETP_EDGE_FUZZ_V1 32
diff --git a/drivers/input/rmi4/rmi_f54.c b/drivers/input/rmi4/rmi_f54.c
index 6c6cdec7da9e..43a4e262cd2b 100644
--- a/drivers/input/rmi4/rmi_f54.c
+++ b/drivers/input/rmi4/rmi_f54.c@@ -193,7 +193,7 @@ static int rmi_f54_request_report(struct rmi_function *fn, u8 report_type) /* * Small delay after disabling interrupts to avoid race condition - * in firmare. This value is a bit higher than absolutely necessary. + * in firmware. This value is a bit higher than absolutely necessary. * Should be removed once issue is resolved in firmware. */ usleep_range(2000, 3000);
diff --git a/drivers/input/touchscreen/exc3000.c b/drivers/input/touchscreen/exc3000.c
index 037bb35238a3..e18e74781c58 100644
--- a/drivers/input/touchscreen/exc3000.c
+++ b/drivers/input/touchscreen/exc3000.c@@ -406,7 +406,7 @@ static int exc3000_probe(struct i2c_client *client) * ensures, that the device probe will not fail for temporary issues * on the bus. This is not needed for the sysfs calls (userspace * will receive the error code and can start another query) and - * cannot be done for touch events (but that only means loosing one + * cannot be done for touch events (but that only means losing one * or two touch events anyways). */ for (retry = 0; retry < 3; retry++) {
diff --git a/drivers/input/touchscreen/usbtouchscreen.c b/drivers/input/touchscreen/usbtouchscreen.c
index 0bbacb517c28..81d24f5fbcc4 100644
--- a/drivers/input/touchscreen/usbtouchscreen.c
+++ b/drivers/input/touchscreen/usbtouchscreen.c@@ -51,7 +51,7 @@ static bool hwcalib_xy; module_param(hwcalib_xy, bool, 0644); MODULE_PARM_DESC(hwcalib_xy, "If set hw-calibrated X/Y are used if available"); -/* device specifc data/functions */ +/* device specific data/functions */ struct usbtouch_usb; struct usbtouch_device_info { int min_xc, max_xc;
--
2.48.1