aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/i8253.c
diff options
context:
space:
mode:
authorDmitri Vorobiev <dmitri.vorobiev@movial.fi>2008-06-18 10:18:19 +0300
committerRalf Baechle <ralf@linux-mips.org>2008-07-15 18:44:31 +0100
commit1ea6428cbdbb0fd1a6e7e8c3044253eab9aff4c7 (patch)
tree4dbb2338a22881de838a831738830ed097ee7836 /arch/mips/kernel/i8253.c
parent8736595bb2b0ce6188ca31308c40921f3f02f35b (diff)
downloadkernel_samsung_smdk4412-1ea6428cbdbb0fd1a6e7e8c3044253eab9aff4c7.zip
kernel_samsung_smdk4412-1ea6428cbdbb0fd1a6e7e8c3044253eab9aff4c7.tar.gz
kernel_samsung_smdk4412-1ea6428cbdbb0fd1a6e7e8c3044253eab9aff4c7.tar.bz2
[MIPS] i8253: make the pit_clockevent variable static
The pit_clockevent symbol is needlessly defined global. This patch makes that variable static. Spotted by sparse. Compile-tested using Malta defconfig. Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/i8253.c')
-rw-r--r--arch/mips/kernel/i8253.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c
index 38fa1a1..b6ac551 100644
--- a/arch/mips/kernel/i8253.c
+++ b/arch/mips/kernel/i8253.c
@@ -80,7 +80,7 @@ static int pit_next_event(unsigned long delta, struct clock_event_device *evt)
* registered. This mechanism replaces the previous #ifdef LOCAL_APIC -
* !using_apic_timer decisions in do_timer_interrupt_hook()
*/
-struct clock_event_device pit_clockevent = {
+static struct clock_event_device pit_clockevent = {
.name = "pit",
.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
.set_mode = init_pit_timer,