Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1b99d9cc authored by Marc Zyngier's avatar Marc Zyngier
Browse files

ARM: RealView: convert to CONFIG_MULTI_IRQ_HANDLER



Convert the RealView platforms to be using the gic_handle_irq
function as their primary interrupt handler.

Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 7e01799c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -278,6 +278,7 @@ config ARCH_REALVIEW
	select ARM_TIMER_SP804
	select GPIO_PL061 if GPIOLIB
	select NEED_MACH_MEMORY_H
	select MULTI_IRQ_HANDLER
	help
	  This enables support for ARM Ltd RealView boards.

+0 −2
Original line number Diff line number Diff line
@@ -7,8 +7,6 @@
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
#include <mach/hardware.h>
#include <asm/hardware/entry-macro-gic.S>

		.macro	disable_fiq
		.endm
+1 −0
Original line number Diff line number Diff line
@@ -469,6 +469,7 @@ MACHINE_START(REALVIEW_EB, "ARM-RealView EB")
	.init_early	= realview_init_early,
	.init_irq	= gic_init_irq,
	.timer		= &realview_eb_timer,
	.handle_irq	= gic_handle_irq,
	.init_machine	= realview_eb_init,
#ifdef CONFIG_ZONE_DMA
	.dma_zone_size	= SZ_256M,
+1 −0
Original line number Diff line number Diff line
@@ -392,6 +392,7 @@ MACHINE_START(REALVIEW_PB1176, "ARM-RealView PB1176")
	.init_early	= realview_init_early,
	.init_irq	= gic_init_irq,
	.timer		= &realview_pb1176_timer,
	.handle_irq	= gic_handle_irq,
	.init_machine	= realview_pb1176_init,
#ifdef CONFIG_ZONE_DMA
	.dma_zone_size	= SZ_256M,
+1 −0
Original line number Diff line number Diff line
@@ -366,6 +366,7 @@ MACHINE_START(REALVIEW_PB11MP, "ARM-RealView PB11MPCore")
	.init_early	= realview_init_early,
	.init_irq	= gic_init_irq,
	.timer		= &realview_pb11mp_timer,
	.handle_irq	= gic_handle_irq,
	.init_machine	= realview_pb11mp_init,
#ifdef CONFIG_ZONE_DMA
	.dma_zone_size	= SZ_256M,
Loading