diff options
author | Kees Cook <keescook@chromium.org> | 2020-07-14 00:01:26 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2020-07-30 20:15:58 +0200 |
commit | b13fecb1c3a603c4b8e99b306fecf4f668c11b32 (patch) | |
tree | 5de6b323616a56d50730104a05e8f74b701376a8 /drivers/tty/vt/keyboard.c | |
parent | usb: gadget: udc: Avoid tasklet passing a global (diff) | |
download | linux-b13fecb1c3a603c4b8e99b306fecf4f668c11b32.tar.xz linux-b13fecb1c3a603c4b8e99b306fecf4f668c11b32.zip |
treewide: Replace DECLARE_TASKLET() with DECLARE_TASKLET_OLD()
This converts all the existing DECLARE_TASKLET() (and ...DISABLED)
macros with DECLARE_TASKLET_OLD() in preparation for refactoring the
tasklet callback type. All existing DECLARE_TASKLET() users had a "0"
data argument, it has been removed here as well.
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'drivers/tty/vt/keyboard.c')
-rw-r--r-- | drivers/tty/vt/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/vt/keyboard.c b/drivers/tty/vt/keyboard.c index 568b2171f335..f80199984ee0 100644 --- a/drivers/tty/vt/keyboard.c +++ b/drivers/tty/vt/keyboard.c @@ -1236,7 +1236,7 @@ static void kbd_bh(unsigned long dummy) } } -DECLARE_TASKLET_DISABLED(keyboard_tasklet, kbd_bh, 0); +DECLARE_TASKLET_DISABLED_OLD(keyboard_tasklet, kbd_bh); #if defined(CONFIG_X86) || defined(CONFIG_IA64) || defined(CONFIG_ALPHA) ||\ defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) ||\ |