clockevents: tick_broadcast_device can become static
authorDmitri Vorobiev <dmitri.vorobiev@movial.com>
Fri, 1 May 2009 20:10:21 +0000 (13:10 -0700)
committerThomas Gleixner <tglx@linutronix.de>
Sat, 2 May 2009 08:31:14 +0000 (10:31 +0200)
The variable tick_broadcast_device is not used outside of the
file where it is defined, so let's make it static.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/time/tick-broadcast.c

index 118a3b3..877dbed 100644 (file)
@@ -27,7 +27,7 @@
  * timer stops in C3 state.
  */
 
-struct tick_device tick_broadcast_device;
+static struct tick_device tick_broadcast_device;
 /* FIXME: Use cpumask_var_t. */
 static DECLARE_BITMAP(tick_broadcast_mask, NR_CPUS);
 static DECLARE_BITMAP(tmpmask, NR_CPUS);