aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/clocksource/mips-gic-timer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/clocksource/mips-gic-timer.c b/drivers/clocksource/mips-gic-timer.c
index 3cf5912c4054..2603f50e5706 100644
--- a/drivers/clocksource/mips-gic-timer.c
+++ b/drivers/clocksource/mips-gic-timer.c
@@ -15,8 +15,8 @@
15 15
16#include <asm/time.h> 16#include <asm/time.h>
17 17
18DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device); 18static DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
19int gic_timer_irq_installed; 19static int gic_timer_irq_installed;
20 20
21static int gic_next_event(unsigned long delta, struct clock_event_device *evt) 21static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
22{ 22{
@@ -30,13 +30,13 @@ static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
30 return res; 30 return res;
31} 31}
32 32
33void gic_set_clock_mode(enum clock_event_mode mode, 33static void gic_set_clock_mode(enum clock_event_mode mode,
34 struct clock_event_device *evt) 34 struct clock_event_device *evt)
35{ 35{
36 /* Nothing to do ... */ 36 /* Nothing to do ... */
37} 37}
38 38
39irqreturn_t gic_compare_interrupt(int irq, void *dev_id) 39static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
40{ 40{
41 struct clock_event_device *cd; 41 struct clock_event_device *cd;
42 int cpu = smp_processor_id(); 42 int cpu = smp_processor_id();
@@ -53,7 +53,7 @@ struct irqaction gic_compare_irqaction = {
53 .name = "timer", 53 .name = "timer",
54}; 54};
55 55
56void gic_event_handler(struct clock_event_device *dev) 56static void gic_event_handler(struct clock_event_device *dev)
57{ 57{
58} 58}
59 59