[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-91d88ce22bca3dcf269661b54d4ea75576dc4e29@git.kernel.org>
Date: Sun, 9 Jan 2011 21:12:58 GMT
From: tip-bot for Randy Dunlap <randy.dunlap@...cle.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
tglx@...utronix.de, randy.dunlap@...cle.com, mingo@...e.hu
Subject: [tip:x86/urgent] x86: Fix sparse non-ANSI function warnings in smpboot.c
Commit-ID: 91d88ce22bca3dcf269661b54d4ea75576dc4e29
Gitweb: http://git.kernel.org/tip/91d88ce22bca3dcf269661b54d4ea75576dc4e29
Author: Randy Dunlap <randy.dunlap@...cle.com>
AuthorDate: Sat, 8 Jan 2011 19:59:14 -0800
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Sun, 9 Jan 2011 10:15:19 +0100
x86: Fix sparse non-ANSI function warnings in smpboot.c
Fix sparse warning for non-ANSI function declaration:
arch/x86/kernel/smpboot.c:100:30: warning: non-ANSI function declaration of function 'cpu_hotplug_driver_lock'
arch/x86/kernel/smpboot.c:105:32: warning: non-ANSI function declaration of function 'cpu_hotplug_driver_unlock'
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
LKML-Reference: <20110108195914.95d366ea.randy.dunlap@...cle.com>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/kernel/smpboot.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index ee886fe..5fdc095 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -97,12 +97,12 @@ static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
*/
static DEFINE_MUTEX(x86_cpu_hotplug_driver_mutex);
-void cpu_hotplug_driver_lock()
+void cpu_hotplug_driver_lock(void)
{
mutex_lock(&x86_cpu_hotplug_driver_mutex);
}
-void cpu_hotplug_driver_unlock()
+void cpu_hotplug_driver_unlock(void)
{
mutex_unlock(&x86_cpu_hotplug_driver_mutex);
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists