[PATCH 0/2] input: atakbd.c bug fixes

2018-09-06 Thread Michael Schmitz
Two bug fixes for the Atari keyboard input driver: - keymap fixes: multiple keymap errors that had gone unnoticed since migration of the m68k keyboard driver code to the input framework. Correct the wrong keycodes - keymap is stil US but keypad, help and undo keys all generate the correct

[PATCH 1/2] input: atakbd.c - fix Atari keymap

2018-09-06 Thread Michael Schmitz
From: Andreas Schwab Fix errors in Atari keymap (mostly in keypad, help and undo keys). Patch provided on debian-68k ML by Andreas Schwab , keymap array size and unhandled scancode limit adjusted to 0x73 by me. Tested-by: Michael Schmitz Signed-off-by: Michael Schmitz ---

[PATCH 2/2] input: atakbd.c - fix Atari CapsLock behaviour

2018-09-06 Thread Michael Schmitz
The CapsLock key on Atari keyboards is not a toggle, it does send the normal make and break scancodes. Drop the CapsLock toggle handling code, which did cause the CapsLock key to merely act as a Shift key. Tested-by: Michael Schmitz Signed-off-by: Michael Schmitz ---

Re: [PATCH 1/2] input: atakbd.c - fix Atari keymap

2018-09-06 Thread Finn Thain
On Fri, 7 Sep 2018, Michael Schmitz wrote: > From: Andreas Schwab > Andreas, because the authorship credit is yours, this patch will also need a 'Signed-off-by' tag from you before it can be merged. -- > Fix errors in Atari keymap (mostly in keypad, help and undo keys). > > Patch provided