mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
clk: qcom: Initialize clock drivers earlier
Initialize the clock drivers on sdm845 and qcs404 in core_initcall so we can have earlier access to cpufreq during booting. Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org> Acked-by: Stephen Boyd <sboyd@kernel.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/75ae9c3a1c0e69b95818c6ffe7181fdeaaf2d70e.1571656015.git.amit.kucheria@linaro.org
This commit is contained in:
parent
57db08f41b
commit
b418bab452
@ -487,7 +487,7 @@ static int __init clk_rpmh_init(void)
|
||||
{
|
||||
return platform_driver_register(&clk_rpmh_driver);
|
||||
}
|
||||
subsys_initcall(clk_rpmh_init);
|
||||
core_initcall(clk_rpmh_init);
|
||||
|
||||
static void __exit clk_rpmh_exit(void)
|
||||
{
|
||||
|
@ -2855,7 +2855,7 @@ static int __init gcc_qcs404_init(void)
|
||||
{
|
||||
return platform_driver_register(&gcc_qcs404_driver);
|
||||
}
|
||||
subsys_initcall(gcc_qcs404_init);
|
||||
core_initcall(gcc_qcs404_init);
|
||||
|
||||
static void __exit gcc_qcs404_exit(void)
|
||||
{
|
||||
|
@ -3628,7 +3628,7 @@ static int __init gcc_sdm845_init(void)
|
||||
{
|
||||
return platform_driver_register(&gcc_sdm845_driver);
|
||||
}
|
||||
subsys_initcall(gcc_sdm845_init);
|
||||
core_initcall(gcc_sdm845_init);
|
||||
|
||||
static void __exit gcc_sdm845_exit(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user