diff options
author | Thierry Reding <treding@nvidia.com> | 2014-07-11 11:00:37 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-07-17 14:58:41 +0200 |
commit | 05ccf19602cc16fc96401b4f2617d1b8e20e642d (patch) | |
tree | 0213edb6c6b8e0147c28b5785f5c966c4d0304a9 /arch/arm/mach-tegra/tegra.c | |
parent | soc/tegra: Implement runtime check for Tegra SoCs (diff) | |
download | linux-05ccf19602cc16fc96401b4f2617d1b8e20e642d.tar.xz linux-05ccf19602cc16fc96401b4f2617d1b8e20e642d.zip |
ARM: tegra: Setup CPU hotplug in a pure initcall
CPU hotplug support doesn't have to be set up until fairly late in the
boot process, so it can be done in a regular initcall. To make sure that
we don't miss any ordering problems in the future, output a warning if
any of the functions are called before initialization has completed.
This is part of untangling the boot order dependencies on Tegra so that
more code can be shared between 32-bit and 64-bit ARM.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/tegra.c')
-rw-r--r-- | arch/arm/mach-tegra/tegra.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/tegra.c b/arch/arm/mach-tegra/tegra.c index 6ccbc8ca1db5..e5733fa78911 100644 --- a/arch/arm/mach-tegra/tegra.c +++ b/arch/arm/mach-tegra/tegra.c @@ -76,7 +76,6 @@ static void __init tegra_init_early(void) tegra_init_fuse(); tegra_cpu_reset_handler_init(); tegra_powergate_init(); - tegra_hotplug_init(); } static void __init tegra_dt_init_irq(void) |