diff options
author | Olof Johansson <olof@lixom.net> | 2013-04-28 18:06:56 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-04-28 18:06:56 -0400 |
commit | e0d20b69d3fa74a21ec363989612bddd58b930b8 (patch) | |
tree | 8ed7c390f99c4d40f59f5dc49e39b077fbb9947f /arch/arm/mach-socfpga | |
parent | 128673b3646beba4f5a41f50a7a21c3c2f3455ca (diff) | |
parent | bc895b5987dd5fad89c0e9693b38104679b647c4 (diff) |
Merge branch 'gic/cleanup' into next/soc
Merge in the gic cleanup since it has a handful of annoying internal conflicts
with soc development branches. All of them are delete/delete conflicts.
* gic/cleanup:
irqchip: vic: add include of linux/irq.h
irqchip: gic: Perform the gic_secondary_init() call via CPU notifier
irqchip: gic: Call handle_bad_irq() directly
arm: Move chained_irq_(enter|exit) to a generic file
arm: Move the set_handle_irq and handle_arch_irq declarations to asm/irq.h
Signed-off-by: Olof Johansson <olof@lixom.net>
Conflicts:
arch/arm/mach-shmobile/smp-emev2.c
arch/arm/mach-shmobile/smp-r8a7779.c
arch/arm/mach-shmobile/smp-sh73a0.c
arch/arm/mach-socfpga/platsmp.c
Diffstat (limited to 'arch/arm/mach-socfpga')
-rw-r--r-- | arch/arm/mach-socfpga/platsmp.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-socfpga/platsmp.c b/arch/arm/mach-socfpga/platsmp.c index b907fb986d9e..b51ce8c7929d 100644 --- a/arch/arm/mach-socfpga/platsmp.c +++ b/arch/arm/mach-socfpga/platsmp.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/of.h> | 23 | #include <linux/of.h> |
24 | #include <linux/of_address.h> | 24 | #include <linux/of_address.h> |
25 | #include <linux/irqchip/arm-gic.h> | ||
26 | 25 | ||
27 | #include <asm/cacheflush.h> | 26 | #include <asm/cacheflush.h> |
28 | #include <asm/smp_scu.h> | 27 | #include <asm/smp_scu.h> |
@@ -30,16 +29,6 @@ | |||
30 | 29 | ||
31 | #include "core.h" | 30 | #include "core.h" |
32 | 31 | ||
33 | static void __cpuinit socfpga_secondary_init(unsigned int cpu) | ||
34 | { | ||
35 | /* | ||
36 | * if any interrupts are already enabled for the primary | ||
37 | * core (e.g. timer irq), then they will not have been enabled | ||
38 | * for us: do so | ||
39 | */ | ||
40 | gic_secondary_init(0); | ||
41 | } | ||
42 | |||
43 | static int __cpuinit socfpga_boot_secondary(unsigned int cpu, struct task_struct *idle) | 32 | static int __cpuinit socfpga_boot_secondary(unsigned int cpu, struct task_struct *idle) |
44 | { | 33 | { |
45 | int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; | 34 | int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; |
@@ -106,7 +95,6 @@ static void socfpga_cpu_die(unsigned int cpu) | |||
106 | struct smp_operations socfpga_smp_ops __initdata = { | 95 | struct smp_operations socfpga_smp_ops __initdata = { |
107 | .smp_init_cpus = socfpga_smp_init_cpus, | 96 | .smp_init_cpus = socfpga_smp_init_cpus, |
108 | .smp_prepare_cpus = socfpga_smp_prepare_cpus, | 97 | .smp_prepare_cpus = socfpga_smp_prepare_cpus, |
109 | .smp_secondary_init = socfpga_secondary_init, | ||
110 | .smp_boot_secondary = socfpga_boot_secondary, | 98 | .smp_boot_secondary = socfpga_boot_secondary, |
111 | #ifdef CONFIG_HOTPLUG_CPU | 99 | #ifdef CONFIG_HOTPLUG_CPU |
112 | .cpu_die = socfpga_cpu_die, | 100 | .cpu_die = socfpga_cpu_die, |