| To: | ralf@linux-mips.org, linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH 1/5] [MIPS] 8253: make the pit_clockevent variable static |
| From: | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> |
| Date: | Wed, 18 Jun 2008 10:18:19 +0300 |
| In-reply-to: | <1213773503-23536-1-git-send-email-dmitri.vorobiev@movial.fi> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1213773503-23536-1-git-send-email-dmitri.vorobiev@movial.fi> |
| Sender: | linux-mips-bounce@linux-mips.org |
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>
---
arch/mips/kernel/i8253.c | 2 +-
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,
--
1.5.5.GIT
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 0/5] [MIPS] Another round of nitpicking, Dmitri Vorobiev |
|---|---|
| Next by Date: | Re: Adding(?) XI support to MIPS-Linux?, Brian Foster |
| Previous by Thread: | [PATCH 4/5] [MIPS] Make gcmp_probe() static, Dmitri Vorobiev |
| Next by Thread: | Re: [PATCH 0/5] [MIPS] Another round of nitpicking, Dmitri Vorobiev |
| Indexes: | [Date] [Thread] [Top] [All Lists] |