[PATCH 09/16] irqchip: Move ARM VIC to drivers/irqchip

Jamie Iles jamie at jamieiles.com
Fri Nov 23 07:01:53 EST 2012


Hi Thomas,

On Tue, Nov 20, 2012 at 11:01:00PM +0100, Thomas Petazzoni wrote:
> +/*
> + * Keep iterating over all registered VIC's until there are no pending
> + * interrupts.
> + */
> +asmlinkage void __exception_irq_entry vic_handle_irq(struct pt_regs *regs)
> +{
> +	int i, handled;
> +
> +	do {
> +		for (i = 0, handled = 0; i < vic_id; ++i)
> +			handled |= handle_one_vic(&vic_devices[i], regs);
> +	} while (handled);
> +}

__exception_irq_entry is only defined for ARM, so I think we either need 
to add a Kconfig dependency on ARM or allow some other way to build on 
non-ARM platforms.

Jamie



More information about the linux-arm-kernel mailing list