ARM: spear: Remove init_irq declaration in machine description
Commit ebafed7a
("ARM: irq: Call irqchip_init if no init_irq function is
specified") removed the need to explictly setup the init_irq field in
the machine description when using only irqchip_init. Remove that
declaration for spear as well.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
parent
7df1af8dca
commit
6098ecb426
|
@ -14,7 +14,6 @@
|
|||
#define pr_fmt(fmt) "SPEAr1310: " fmt
|
||||
|
||||
#include <linux/amba/pl022.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/pata_arasan_cf_data.h>
|
||||
#include <asm/mach/arch.h>
|
||||
|
@ -60,7 +59,6 @@ static void __init spear1310_map_io(void)
|
|||
DT_MACHINE_START(SPEAR1310_DT, "ST SPEAr1310 SoC with Flattened Device Tree")
|
||||
.smp = smp_ops(spear13xx_smp_ops),
|
||||
.map_io = spear1310_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear13xx_timer_init,
|
||||
.init_machine = spear1310_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include <linux/amba/serial.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include "generic.h"
|
||||
#include <mach/spear.h>
|
||||
|
@ -155,7 +154,6 @@ static const char * const spear1340_dt_board_compat[] = {
|
|||
DT_MACHINE_START(SPEAR1340_DT, "ST SPEAr1340 SoC with Flattened Device Tree")
|
||||
.smp = smp_ops(spear13xx_smp_ops),
|
||||
.map_io = spear13xx_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear13xx_timer_init,
|
||||
.init_machine = spear1340_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#define pr_fmt(fmt) "SPEAr300: " fmt
|
||||
|
||||
#include <linux/amba/pl08x.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include "generic.h"
|
||||
|
@ -212,7 +211,6 @@ static void __init spear300_map_io(void)
|
|||
|
||||
DT_MACHINE_START(SPEAR300_DT, "ST SPEAr300 SoC with Flattened Device Tree")
|
||||
.map_io = spear300_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear3xx_timer_init,
|
||||
.init_machine = spear300_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
#include <linux/amba/pl08x.h>
|
||||
#include <linux/amba/serial.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include "generic.h"
|
||||
|
@ -254,7 +253,6 @@ static void __init spear310_map_io(void)
|
|||
|
||||
DT_MACHINE_START(SPEAR310_DT, "ST SPEAr310 SoC with Flattened Device Tree")
|
||||
.map_io = spear310_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear3xx_timer_init,
|
||||
.init_machine = spear310_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#include <linux/amba/pl022.h>
|
||||
#include <linux/amba/pl08x.h>
|
||||
#include <linux/amba/serial.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include <asm/mach/map.h>
|
||||
|
@ -269,7 +268,6 @@ static void __init spear320_map_io(void)
|
|||
|
||||
DT_MACHINE_START(SPEAR320_DT, "ST SPEAr320 SoC with Flattened Device Tree")
|
||||
.map_io = spear320_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear3xx_timer_init,
|
||||
.init_machine = spear320_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#include <linux/amba/pl08x.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/irqchip.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/of_platform.h>
|
||||
|
@ -423,7 +422,6 @@ static const char *spear600_dt_board_compat[] = {
|
|||
|
||||
DT_MACHINE_START(SPEAR600_DT, "ST SPEAr600 (Flattened Device Tree)")
|
||||
.map_io = spear6xx_map_io,
|
||||
.init_irq = irqchip_init,
|
||||
.init_time = spear6xx_timer_init,
|
||||
.init_machine = spear600_dt_init,
|
||||
.restart = spear_restart,
|
||||
|
|
Loading…
Reference in New Issue