diff options
author | Kees Cook <keescook@chromium.org> | 2020-07-14 01:01:26 +0300 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2020-07-30 21:15:58 +0300 |
commit | b13fecb1c3a603c4b8e99b306fecf4f668c11b32 (patch) | |
tree | 5de6b323616a56d50730104a05e8f74b701376a8 /kernel/irq | |
parent | f9dc3713df1229aa8168169e9cf1010fbac68de5 (diff) | |
download | linux-b13fecb1c3a603c4b8e99b306fecf4f668c11b32.tar.xz |
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 'kernel/irq')
-rw-r--r-- | kernel/irq/resend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/resend.c b/kernel/irq/resend.c index 27634f4022d0..c48ce19a257f 100644 --- a/kernel/irq/resend.c +++ b/kernel/irq/resend.c @@ -45,7 +45,7 @@ static void resend_irqs(unsigned long arg) } /* Tasklet to handle resend: */ -static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0); +static DECLARE_TASKLET_OLD(resend_tasklet, resend_irqs); static int irq_sw_resend(struct irq_desc *desc) { |