aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/kthread.h
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2017-10-22 18:22:50 -0700
committerKees Cook <keescook@chromium.org>2017-11-21 15:57:14 -0800
commit1fe66ba572b455270dc35a2c099dd7328cec9e4c (patch)
tree28ef99f61598350d30e3cd86636e21485cac4a6b /include/linux/kthread.h
parenttimer: Switch callback prototype to take struct timer_list * argument (diff)
downloadwireguard-linux-1fe66ba572b455270dc35a2c099dd7328cec9e4c.tar.xz
wireguard-linux-1fe66ba572b455270dc35a2c099dd7328cec9e4c.zip
timer: Remove unused data arguments from macros
With the .data field removed, the ignored data arguments in timer macros can be removed. Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Tejun Heo <tj@kernel.org> Cc: Lai Jiangshan <jiangshanlai@gmail.com> Cc: Jens Axboe <axboe@kernel.dk> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Shaohua Li <shli@fb.com> Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/linux/kthread.h')
-rw-r--r--include/linux/kthread.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/kthread.h b/include/linux/kthread.h
index 3203e36b2ee8..b855c5b72b26 100644
--- a/include/linux/kthread.h
+++ b/include/linux/kthread.h
@@ -119,7 +119,6 @@ struct kthread_delayed_work {
#define KTHREAD_DELAYED_WORK_INIT(dwork, fn) { \
.work = KTHREAD_WORK_INIT((dwork).work, (fn)), \
.timer = __TIMER_INITIALIZER((TIMER_FUNC_TYPE)kthread_delayed_work_timer_fn,\
- (TIMER_DATA_TYPE)&(dwork.timer), \
TIMER_IRQSAFE), \
}
@@ -167,7 +166,6 @@ extern void __kthread_init_worker(struct kthread_worker *worker,
kthread_init_work(&(dwork)->work, (fn)); \
__setup_timer(&(dwork)->timer, \
(TIMER_FUNC_TYPE)kthread_delayed_work_timer_fn,\
- (TIMER_DATA_TYPE)&(dwork)->timer, \
TIMER_IRQSAFE); \
} while (0)