]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: shmobile: lager: Remove init_irq declaration in machine description
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Tue, 14 May 2013 15:38:40 +0000 (17:38 +0200)
committerSimon Horman <horms+renesas@verge.net.au>
Sat, 25 May 2013 04:51:59 +0000 (13:51 +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-lager.c

index 6a1ba38fae26b8537baa8fad26e8f23897e46249..406fac1302da3e25455c57c48a29c7592a54610d 100644 (file)
@@ -19,7 +19,6 @@
  */
 
 #include <linux/interrupt.h>
-#include <linux/irqchip.h>
 #include <linux/kernel.h>
 #include <linux/leds.h>
 #include <linux/pinctrl/machine.h>
@@ -81,7 +80,6 @@ static const char *lager_boards_compat_dt[] __initdata = {
 };
 
 DT_MACHINE_START(LAGER_DT, "lager")
-       .init_irq       = irqchip_init,
        .init_time      = r8a7790_timer_init,
        .init_machine   = lager_add_standard_devices,
        .dt_compat      = lager_boards_compat_dt,