]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Input: imx_keypad - fix spelling mistake "Colums" -> "Columns"
authorEthan Carter Edwards <ethan@ethancedwards.com>
Sun, 19 Apr 2026 00:58:32 +0000 (20:58 -0400)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 20 Apr 2026 00:55:20 +0000 (17:55 -0700)
There is a spelling mistake in two comments. Fix them.

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
Link: https://patch.msgid.link/20260418-imx-typo-v1-1-2a15e54ad4e7@ethancedwards.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/keyboard/imx_keypad.c

index 069c1d6376e1823c8b72674e088c71cda98578ff..ccde60cd6bb3f51c74ada5f8d479b45c12fbfa16 100644 (file)
@@ -324,7 +324,7 @@ static void imx_keypad_config(struct imx_keypad *keypad)
        reg_val |= (keypad->cols_en_mask & 0xff) << 8;  /* cols */
        writew(reg_val, keypad->mmio_base + KPCR);
 
-       /* Write 0's to KPDR[15:8] (Colums) */
+       /* Write 0's to KPDR[15:8] (Columns) */
        reg_val = readw(keypad->mmio_base + KPDR);
        reg_val &= 0x00ff;
        writew(reg_val, keypad->mmio_base + KPDR);
@@ -357,7 +357,7 @@ static void imx_keypad_inhibit(struct imx_keypad *keypad)
        reg_val |= KBD_STAT_KPKR | KBD_STAT_KPKD;
        writew(reg_val, keypad->mmio_base + KPSR);
 
-       /* Colums as open drain and disable all rows */
+       /* Columns as open drain and disable all rows */
        reg_val = (keypad->cols_en_mask & 0xff) << 8;
        writew(reg_val, keypad->mmio_base + KPCR);
 }