]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: shmobile: ape6evm: Remove init_irq declaration in machine description
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Tue, 14 May 2013 15:38:38 +0000 (17:38 +0200)
committerSimon Horman <horms+renesas@verge.net.au>
Wed, 15 May 2013 01:12:40 +0000 (10:12 +0900)
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 shmobile as well.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
arch/arm/mach-shmobile/board-ape6evm.c

index 5eb0caa6a7d09847cfa984daf66bf71d0ec2e2b8..1fbc39a14e25c82aa0fe9e33e9e47405ea815d8a 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <linux/gpio.h>
 #include <linux/interrupt.h>
-#include <linux/irqchip.h>
 #include <linux/kernel.h>
 #include <linux/pinctrl/machine.h>
 #include <linux/platform_device.h>
@@ -102,7 +101,6 @@ static const char *ape6evm_boards_compat_dt[] __initdata = {
 };
 
 DT_MACHINE_START(APE6EVM_DT, "ape6evm")
-       .init_irq       = irqchip_init,
        .init_time      = shmobile_timer_init,
        .init_machine   = ape6evm_add_standard_devices,
        .dt_compat      = ape6evm_boards_compat_dt,