xtensa: clean up arch/xtensa/kernel/time.c
authorMax Filippov <jcmvbkbc@gmail.com>
Thu, 24 Jan 2019 23:09:21 +0000 (15:09 -0800)
committerMax Filippov <jcmvbkbc@gmail.com>
Thu, 7 Feb 2019 20:16:49 +0000 (12:16 -0800)
- move all constant assignments from local_timer_setup to the definition
  of ccount_timer to make it mostly statically initialized;
- drop local function declarations, reorder functions and variables that
  reference them.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/kernel/time.c

index 378186b..69db8c9 100644 (file)
@@ -52,14 +52,11 @@ static struct clocksource ccount_clocksource = {
        .flags = CLOCK_SOURCE_IS_CONTINUOUS,
 };
 
-static int ccount_timer_set_next_event(unsigned long delta,
-               struct clock_event_device *dev);
 struct ccount_timer {
        struct clock_event_device evt;
        int irq_enabled;
        char name[24];
 };
-static DEFINE_PER_CPU(struct ccount_timer, ccount_timer);
 
 static int ccount_timer_set_next_event(unsigned long delta,
                struct clock_event_device *dev)
@@ -107,7 +104,30 @@ static int ccount_timer_set_oneshot(struct clock_event_device *evt)
        return 0;
 }
 
-static irqreturn_t timer_interrupt(int irq, void *dev_id);
+static DEFINE_PER_CPU(struct ccount_timer, ccount_timer) = {
+       .evt = {
+               .features = CLOCK_EVT_FEAT_ONESHOT,
+               .rating = 300,
+               .set_next_event = ccount_timer_set_next_event,
+               .set_state_shutdown = ccount_timer_shutdown,
+               .set_state_oneshot = ccount_timer_set_oneshot,
+               .tick_resume = ccount_timer_set_oneshot,
+       },
+};
+
+static irqreturn_t timer_interrupt(int irq, void *dev_id)
+{
+       struct clock_event_device *evt = &this_cpu_ptr(&ccount_timer)->evt;
+
+       set_linux_timer(get_linux_timer());
+       evt->event_handler(evt);
+
+       /* Allow platform to do something useful (Wdog). */
+       platform_heartbeat();
+
+       return IRQ_HANDLED;
+}
+
 static struct irqaction timer_irqaction = {
        .handler =      timer_interrupt,
        .flags =        IRQF_TIMER,
@@ -120,14 +140,8 @@ void local_timer_setup(unsigned cpu)
        struct clock_event_device *clockevent = &timer->evt;
 
        timer->irq_enabled = 1;
-       clockevent->name = timer->name;
        snprintf(timer->name, sizeof(timer->name), "ccount_clockevent_%u", cpu);
-       clockevent->features = CLOCK_EVT_FEAT_ONESHOT;
-       clockevent->rating = 300;
-       clockevent->set_next_event = ccount_timer_set_next_event;
-       clockevent->set_state_shutdown = ccount_timer_shutdown;
-       clockevent->set_state_oneshot = ccount_timer_set_oneshot;
-       clockevent->tick_resume = ccount_timer_set_oneshot;
+       clockevent->name = timer->name;
        clockevent->cpumask = cpumask_of(cpu);
        clockevent->irq = irq_create_mapping(NULL, LINUX_TIMER_INT);
        if (WARN(!clockevent->irq, "error: can't map timer irq"))
@@ -190,23 +204,6 @@ void __init time_init(void)
        timer_probe();
 }
 
-/*
- * The timer interrupt is called HZ times per second.
- */
-
-irqreturn_t timer_interrupt(int irq, void *dev_id)
-{
-       struct clock_event_device *evt = &this_cpu_ptr(&ccount_timer)->evt;
-
-       set_linux_timer(get_linux_timer());
-       evt->event_handler(evt);
-
-       /* Allow platform to do something useful (Wdog). */
-       platform_heartbeat();
-
-       return IRQ_HANDLED;
-}
-
 #ifndef CONFIG_GENERIC_CALIBRATE_DELAY
 void calibrate_delay(void)
 {