Skip to content

Commit 2e32d2b

Browse files
ethancedwards8dtor
authored andcommitted
Input: imx_keypad - fix spelling mistake "Colums" -> "Columns"
There is a spelling mistake in two comments. Fix them. Signed-off-by: Ethan Carter Edwards <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent f5f9e07 commit 2e32d2b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/input/keyboard/imx_keypad.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ static void imx_keypad_config(struct imx_keypad *keypad)
324324
reg_val |= (keypad->cols_en_mask & 0xff) << 8; /* cols */
325325
writew(reg_val, keypad->mmio_base + KPCR);
326326

327-
/* Write 0's to KPDR[15:8] (Colums) */
327+
/* Write 0's to KPDR[15:8] (Columns) */
328328
reg_val = readw(keypad->mmio_base + KPDR);
329329
reg_val &= 0x00ff;
330330
writew(reg_val, keypad->mmio_base + KPDR);
@@ -357,7 +357,7 @@ static void imx_keypad_inhibit(struct imx_keypad *keypad)
357357
reg_val |= KBD_STAT_KPKR | KBD_STAT_KPKD;
358358
writew(reg_val, keypad->mmio_base + KPSR);
359359

360-
/* Colums as open drain and disable all rows */
360+
/* Columns as open drain and disable all rows */
361361
reg_val = (keypad->cols_en_mask & 0xff) << 8;
362362
writew(reg_val, keypad->mmio_base + KPCR);
363363
}

0 commit comments

Comments
 (0)