From: Adrian Bunk Date: Wed, 17 Oct 2007 06:26:40 +0000 (-0700) Subject: kernel/rtmutex-debug.c: cleanups X-Git-Tag: v2.6.24-rc1~729 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=a4d63e729edad704af95e5f2a56e8c8eaaa5216b;p=linux-2.6-omap-h63xx.git kernel/rtmutex-debug.c: cleanups This patch contains the following cleanups: - make the needlessly global variable rt_trace_on static - remove the unused global function deadlock_trace_off() Signed-off-by: Adrian Bunk Cc: Thomas Gleixner Cc: Ingo Molnar Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/rtmutex-debug.c b/kernel/rtmutex-debug.c index 5aedbee014d..6b0703db152 100644 --- a/kernel/rtmutex-debug.c +++ b/kernel/rtmutex-debug.c @@ -82,12 +82,7 @@ do { \ * into the tracing code when doing error printk or * executing a BUG(): */ -int rt_trace_on = 1; - -void deadlock_trace_off(void) -{ - rt_trace_on = 0; -} +static int rt_trace_on = 1; static void printk_task(struct task_struct *p) {