From: Michael Schmitz <schmitzmic@gmail.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: linux-m68k@lists.linux-m68k.org, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] m68k/atari: Remove obsolete keyboard_tasklet scheduling
Date: Sun, 31 Aug 2014 21:07:36 +1200 [thread overview]
Message-ID: <5402E5D8.6080401@gmail.com> (raw)
In-Reply-To: <1409328896-8457-1-git-send-email-geert@linux-m68k.org>
Hi Geert
> 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'
>
Has keyboard_tasklet gone for good, or just been conditionalized on
CONFIG_VT?
> 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.
>
I'd like to test this on real hardware (though ARAnyM does emulate the
keyboard ACIA IIRC - if you had a working keyboard there I should find
no different),
Cheers,
Michael
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
> Not tested on real hardware. ARAnyM doesn't have keyboard LEDs.
>
> arch/m68k/atari/atakeyb.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/m68k/atari/atakeyb.c b/arch/m68k/atari/atakeyb.c
> index 95022b04b62d..1e2be1d34635 100644
> --- a/arch/m68k/atari/atakeyb.c
> +++ b/arch/m68k/atari/atakeyb.c
> @@ -170,7 +170,6 @@ repeat:
> 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:
>
WARNING: multiple messages have this Message-ID (diff)
From: Michael Schmitz <schmitzmic@gmail.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: linux-m68k@vger.kernel.org, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] m68k/atari: Remove obsolete keyboard_tasklet scheduling
Date: Sun, 31 Aug 2014 21:07:36 +1200 [thread overview]
Message-ID: <5402E5D8.6080401@gmail.com> (raw)
In-Reply-To: <1409328896-8457-1-git-send-email-geert@linux-m68k.org>
Hi Geert
> 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'
>
Has keyboard_tasklet gone for good, or just been conditionalized on
CONFIG_VT?
> 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.
>
I'd like to test this on real hardware (though ARAnyM does emulate the
keyboard ACIA IIRC - if you had a working keyboard there I should find
no different),
Cheers,
Michael
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
> Not tested on real hardware. ARAnyM doesn't have keyboard LEDs.
>
> arch/m68k/atari/atakeyb.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/m68k/atari/atakeyb.c b/arch/m68k/atari/atakeyb.c
> index 95022b04b62d..1e2be1d34635 100644
> --- a/arch/m68k/atari/atakeyb.c
> +++ b/arch/m68k/atari/atakeyb.c
> @@ -170,7 +170,6 @@ repeat:
> 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:
>
next prev parent reply other threads:[~2014-08-31 9:07 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-29 16:14 [PATCH] m68k/atari: Remove obsolete keyboard_tasklet scheduling Geert Uytterhoeven
2014-08-29 16:14 ` Geert Uytterhoeven
2014-08-31 9:07 ` Michael Schmitz
2014-08-31 9:07 ` Michael Schmitz [this message]
2014-08-31 9:07 ` Michael Schmitz
2014-08-31 9:16 ` Geert Uytterhoeven
2014-08-31 9:16 ` Geert Uytterhoeven
2015-01-11 10:12 ` Geert Uytterhoeven
2015-01-11 10:12 ` Geert Uytterhoeven
2014-08-31 9:16 ` Geert Uytterhoeven
2015-01-13 8:48 ` Geert Uytterhoeven
2015-01-13 8:48 ` Geert Uytterhoeven
2015-01-13 8:48 ` Geert Uytterhoeven
-- strict thread matches above, loose matches on Subject: below --
2014-08-29 16:14 Geert Uytterhoeven
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5402E5D8.6080401@gmail.com \
--to=schmitzmic@gmail.com \
--cc=geert@linux-m68k.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.