diff options
author | Jiri Slaby <jslaby@suse.cz> | 2021-07-14 11:13:06 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-07-21 12:49:50 +0200 |
commit | b44206930a27e321b13a651ea176b6ccb4ce701a (patch) | |
tree | 0e314f15bba56ad722ec127505923177ecbb9f8f /drivers/tty/amiserial.c | |
parent | 1cd25475a5ebea9a82c61a9a17abea7e78dfff9f (diff) | |
download | lwn-b44206930a27e321b13a651ea176b6ccb4ce701a.tar.gz lwn-b44206930a27e321b13a651ea176b6ccb4ce701a.zip |
amiserial: remove stale comment
The comment about interrupt routines is stale at least since commit
41c28ff1635e (kill _INLINE_) from 2006. So remove the obsolete parts and
leave only "here they start...".
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20210714091314.8292-3-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/amiserial.c')
-rw-r--r-- | drivers/tty/amiserial.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/tty/amiserial.c b/drivers/tty/amiserial.c index b2ff5861ca78..6edd2de01f39 100644 --- a/drivers/tty/amiserial.c +++ b/drivers/tty/amiserial.c @@ -179,21 +179,8 @@ static void rs_start(struct tty_struct *tty) /* * ---------------------------------------------------------------------- * - * Here starts the interrupt handling routines. All of the following - * subroutines are declared as inline and are folded into - * rs_interrupt(). They were separated out for readability's sake. + * Here start the interrupt handling routines. * - * Note: rs_interrupt() is a "fast" interrupt, which means that it - * runs with interrupts turned off. People who may want to modify - * rs_interrupt() should try to keep the interrupt handler as fast as - * possible. After you are done making modifications, it is not a bad - * idea to do: - * - * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c - * - * and look at the resulting assemble code in serial.s. - * - * - Ted Ts'o (tytso@mit.edu), 7-Mar-93 * ----------------------------------------------------------------------- */ |