Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: bcm: brcmstb: Drop custom init_irq callback

The default is to call irqchip_init() in the absence of a machine
descriptor init_irq callback.

Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>

-6
-6
arch/arm/mach-bcm/brcmstb.c
··· 23 23 0, 24 24 }; 25 25 26 - static void __init brcmstb_init_irq(void) 27 - { 28 - irqchip_init(); 29 - } 30 - 31 26 static const char *const brcmstb_match[] __initconst = { 32 27 "brcm,bcm7445", 33 28 "brcm,brcmstb", ··· 31 36 32 37 DT_MACHINE_START(BRCMSTB, "Broadcom STB (Flattened Device Tree)") 33 38 .dt_compat = brcmstb_match, 34 - .init_irq = brcmstb_init_irq, 35 39 MACHINE_END