From 8438f379fca8cfbd0116eba79b0e6969427c8490 Mon Sep 17 00:00:00 2001 From: Srinivas Ramana Date: Thu, 29 Oct 2015 12:26:50 +0530 Subject: [PATCH] arm: Move topology_init to postcore Move topology_init to postcore initcall to retrieve cpu frequency table early in boot from OPP. Change-Id: If715f611c48e91e360caa58f44e20ee17fcb6948 Signed-off-by: Srinivas Ramana --- arch/arm/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index ebdde5b9744c..1fdb4f3e0c60 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -1039,7 +1039,7 @@ static int __init topology_init(void) return 0; } -subsys_initcall(topology_init); +postcore_initcall(topology_init); #ifdef CONFIG_HAVE_PROC_CPU static int __init proc_cpu_init(void)