diff options
author | Olof Johansson <olof@lixom.net> | 2013-02-05 22:12:59 +0100 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-02-05 22:13:08 +0100 |
commit | f7c66dc0bf0f4ecd349c79315c87841c67e27aef (patch) | |
tree | 46429af38e470f061f97fb4a4690dbe3640e0399 | |
parent | Merge tag 'tegra-for-3.9-soc-t114' of git://git.kernel.org/pub/scm/linux/kern... (diff) | |
download | linux-f7c66dc0bf0f4ecd349c79315c87841c67e27aef.tar.xz linux-f7c66dc0bf0f4ecd349c79315c87841c67e27aef.zip |
ARM: tegra: remove empty tegra_smp_init_cpus()
Based on two separate cleanup branches, it's now empty and can be removed.
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Stephen Warren <swarren@wwwdotorg.org>
-rw-r--r-- | arch/arm/mach-tegra/platsmp.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/mach-tegra/platsmp.c b/arch/arm/mach-tegra/platsmp.c index f06fc51cc27a..2c6b3d55213b 100644 --- a/arch/arm/mach-tegra/platsmp.c +++ b/arch/arm/mach-tegra/platsmp.c @@ -176,10 +176,6 @@ done: return status; } -static void __init tegra_smp_init_cpus(void) -{ -} - static void __init tegra_smp_prepare_cpus(unsigned int max_cpus) { /* Always mark the boot CPU (CPU0) as initialized. */ @@ -190,7 +186,6 @@ static void __init tegra_smp_prepare_cpus(unsigned int max_cpus) } struct smp_operations tegra_smp_ops __initdata = { - .smp_init_cpus = tegra_smp_init_cpus, .smp_prepare_cpus = tegra_smp_prepare_cpus, .smp_secondary_init = tegra_secondary_init, .smp_boot_secondary = tegra_boot_secondary, |