Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: imx_keypad - fix spelling mistake "Colums" -> "Columns"

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>

authored by

Ethan Carter Edwards and committed by
Dmitry Torokhov
2e32d2ba f5f9e070

+2 -2
+2 -2
drivers/input/keyboard/imx_keypad.c
··· 324 324 reg_val |= (keypad->cols_en_mask & 0xff) << 8; /* cols */ 325 325 writew(reg_val, keypad->mmio_base + KPCR); 326 326 327 - /* Write 0's to KPDR[15:8] (Colums) */ 327 + /* Write 0's to KPDR[15:8] (Columns) */ 328 328 reg_val = readw(keypad->mmio_base + KPDR); 329 329 reg_val &= 0x00ff; 330 330 writew(reg_val, keypad->mmio_base + KPDR); ··· 357 357 reg_val |= KBD_STAT_KPKR | KBD_STAT_KPKD; 358 358 writew(reg_val, keypad->mmio_base + KPSR); 359 359 360 - /* Colums as open drain and disable all rows */ 360 + /* Columns as open drain and disable all rows */ 361 361 reg_val = (keypad->cols_en_mask & 0xff) << 8; 362 362 writew(reg_val, keypad->mmio_base + KPCR); 363 363 }