ARM: at91: soc: Add init_time callback
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Tue, 2 Sep 2014 16:05:04 +0000 (18:05 +0200)
committerNicolas Ferre <nicolas.ferre@atmel.com>
Wed, 3 Sep 2014 08:55:45 +0000 (10:55 +0200)
Introduce an init_time callback to the at91_init_soc structure to be able to
tweak the init_time machine callback on a per-soc basis, instead of having to
rely on a global one.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Conflicts:
arch/arm/mach-at91/setup.c

arch/arm/mach-at91/generic.h
arch/arm/mach-at91/setup.c
arch/arm/mach-at91/soc.h

index 31cba6d..fb99dab 100644 (file)
@@ -44,6 +44,7 @@ extern void __init at91_sysirq_mask_rtt(u32 rtt_base);
 extern void __init at91_register_devices(void);
 
  /* Timer */
+extern void __init at91_init_time(void);
 extern void at91rm9200_ioremap_st(u32 addr);
 extern void at91rm9200_timer_init(void);
 extern void at91sam926x_ioremap_pit(u32 addr);
index d2cade2..51c22a2 100644 (file)
@@ -416,3 +416,8 @@ void __init at91_register_devices(void)
 {
        at91_boot_soc.register_devices();
 }
+
+void __init at91_init_time(void)
+{
+       at91_boot_soc.init_time();
+}
index ab983f2..2886b83 100644 (file)
@@ -13,6 +13,7 @@ struct at91_init_soc {
        void (*register_clocks)(void);
        void (*register_devices)(void);
        void (*init)(void);
+       void (*init_time)(void);
 };
 
 extern struct at91_init_soc at91_boot_soc;