mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 04:36:41 +07:00
m68k/atari: Remove obsolete keyboard_tasklet scheduling
If CONFIG_VT=n: arch/m68k/atari/built-in.o: In function `atari_keyboard_interrupt': atakeyb.c:(.text+0x1846): undefined reference to `keyboard_tasklet' atakeyb.c:(.text+0x1852): undefined reference to `keyboard_tasklet' I think the keyboard_tasklet scheduling is no longer needed, as I believe it's handled by drivers/tty/vt/keyboard.c based on events received from the input subsystem. So just remove it. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Tested-by: Michael Schmitz <schmitz@debian.org>
This commit is contained in:
parent
2e874d178c
commit
e69229f2eb
@ -170,7 +170,6 @@ static irqreturn_t atari_keyboard_interrupt(int irq, void *dummy)
|
||||
if (acia_stat & ACIA_RDRF) {
|
||||
/* received a character */
|
||||
scancode = acia.key_data; /* get it or reset the ACIA, I'll get it! */
|
||||
tasklet_schedule(&keyboard_tasklet);
|
||||
interpret_scancode:
|
||||
switch (kb_state.state) {
|
||||
case KEYBOARD:
|
||||
|
Loading…
Reference in New Issue
Block a user