Commit 8b604d52 authored by Ingo Molnar's avatar Ingo Molnar

fix: "smp_call_function: get rid of the unused nonatomic/retry argument"

drivers/char/sysrq.c: In function 'sysrq_showregs_othercpus':
drivers/char/sysrq.c:218: error: too many arguments to function 'smp_call_function'
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent ce0d1b6f
...@@ -215,7 +215,7 @@ static void showacpu(void *dummy) ...@@ -215,7 +215,7 @@ static void showacpu(void *dummy)
static void sysrq_showregs_othercpus(struct work_struct *dummy) static void sysrq_showregs_othercpus(struct work_struct *dummy)
{ {
smp_call_function(showacpu, NULL, 0, 0); smp_call_function(showacpu, NULL, 0);
} }
static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus); static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment