Skip to content

Commit

Permalink
fix: "smp_call_function: get rid of the unused nonatomic/retry argument"
Browse files Browse the repository at this point in the history
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: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jun 27, 2008
1 parent ce0d1b6 commit 8b604d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/sysrq.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ static void showacpu(void *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);
Expand Down

0 comments on commit 8b604d5

Please sign in to comment.