Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: ab8500: sysctrl: Initialize driver at arch_initcall

The abx500-clk driver is initiated at arch_initcall level. Moreover it
is relying on the ab8500-sysctrl API to be available. Therefore move
ab8500-sysctrl to arch_initcall level as well. The device is already
added before the abx500 clk device, thus it will be probed before as
well, which is exactly what we want.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>

authored by

Ulf Hansson and committed by
Samuel Ortiz
caa62d64 741cdecf

+1 -1
+1 -1
drivers/mfd/ab8500-sysctrl.c
··· 242 242 { 243 243 return platform_driver_register(&ab8500_sysctrl_driver); 244 244 } 245 - subsys_initcall(ab8500_sysctrl_init); 245 + arch_initcall(ab8500_sysctrl_init); 246 246 247 247 MODULE_AUTHOR("Mattias Nilsson <mattias.i.nilsson@stericsson.com"); 248 248 MODULE_DESCRIPTION("AB8500 system control driver");