[RFC PATCH 2/4] ARM: dt: register local timers as early platform devices
Marc Zyngier
marc.zyngier at arm.com
Fri Jun 24 10:10:57 EDT 2011
Use of_early_platform_populate() to collect nodes with the
"localtimer" compatible property and register them with
the early platform "bus".
Signed-off-by: Marc Zyngier <marc.zyngier at arm.com>
---
arch/arm/kernel/time.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/arch/arm/kernel/time.c b/arch/arm/kernel/time.c
index 32d0df8..08a28ef 100644
--- a/arch/arm/kernel/time.c
+++ b/arch/arm/kernel/time.c
@@ -25,6 +25,7 @@
#include <linux/timer.h>
#include <linux/irq.h>
#include <linux/platform_device.h>
+#include <linux/of_platform.h>
#include <linux/mc146818rtc.h>
@@ -156,6 +157,9 @@ static void __init __arm_late_time_init(void)
arm_late_time_init();
#ifdef CONFIG_LOCAL_TIMER_DEVICES
+#ifdef CONFIG_OF_FLATTREE
+ of_early_platform_populate("localtimer");
+#endif
early_platform_driver_register_all("localtimer");
early_platform_driver_probe("localtimer", 1, 0);
#endif
--
1.7.0.4
More information about the linux-arm-kernel
mailing list