Merge tag 'remove-local-timers' of git://git.kernel.org/pub/scm/linux/kernel/git...
[firefly-linux-kernel-4.4.55.git] / drivers / clocksource / time-armada-370-xp.c
index f86542002ee1f21c5cace8559f619fa9ecb6b307..847cab6f6e31009f9a97560642ee4685497ead18 100644 (file)
@@ -161,7 +161,7 @@ static irqreturn_t armada_370_xp_timer_interrupt(int irq, void *dev_id)
 /*
  * Setup the local clock events for a CPU.
  */
-static int __cpuinit armada_370_xp_timer_setup(struct clock_event_device *evt)
+static int armada_370_xp_timer_setup(struct clock_event_device *evt)
 {
        u32 u;
        int cpu = smp_processor_id();
@@ -188,13 +188,13 @@ static int __cpuinit armada_370_xp_timer_setup(struct clock_event_device *evt)
        return 0;
 }
 
-static void __cpuinit armada_370_xp_timer_stop(struct clock_event_device *evt)
+static void armada_370_xp_timer_stop(struct clock_event_device *evt)
 {
        evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
        disable_percpu_irq(evt->irq);
 }
 
-static int __cpuinit armada_370_xp_timer_cpu_notify(struct notifier_block *self,
+static int armada_370_xp_timer_cpu_notify(struct notifier_block *self,
                                           unsigned long action, void *hcpu)
 {
        /*
@@ -213,7 +213,7 @@ static int __cpuinit armada_370_xp_timer_cpu_notify(struct notifier_block *self,
        return NOTIFY_OK;
 }
 
-static struct notifier_block armada_370_xp_timer_cpu_nb __cpuinitdata = {
+static struct notifier_block armada_370_xp_timer_cpu_nb = {
        .notifier_call = armada_370_xp_timer_cpu_notify,
 };