From: Ingo Molnar Date: Fri, 27 Jun 2008 09:52:45 +0000 (+0200) Subject: fix: "smp_call_function: get rid of the unused nonatomic/retry argument" X-Git-Tag: v2.6.27-rc1~1069^2~2^2~5 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8b604d520799a995946437d041f46bae7d5bcc8c;p=linux-2.6-omap-h63xx.git 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: Ingo Molnar --- diff --git a/drivers/char/sysrq.c b/drivers/char/sysrq.c index dbce1263bdf..8fdfe9c871e 100644 --- a/drivers/char/sysrq.c +++ b/drivers/char/sysrq.c @@ -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);