From: Sonny Rao Date: Mon, 9 Jul 2007 17:31:44 +0000 (+1000) Subject: [POWERPC] Check for NULL ppc_md.init_IRQ() before calling X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~40054^2^2~9 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=70584578ab3e940ac9d7820f268f9adc9884e407;p=mirror_ubuntu-artful-kernel.git [POWERPC] Check for NULL ppc_md.init_IRQ() before calling Check to make sure ppc_md.init_IRQ has been set before calling it. Signed-off-by: Sonny Rao Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index a3351561d283..2fc87862146c 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c @@ -336,7 +336,8 @@ void do_IRQ(struct pt_regs *regs) void __init init_IRQ(void) { - ppc_md.init_IRQ(); + if (ppc_md.init_IRQ) + ppc_md.init_IRQ(); #ifdef CONFIG_PPC64 irq_ctx_init(); #endif