From: Marek BehĂșn Date: Wed, 7 Aug 2024 16:40:56 +0000 (+0200) Subject: irqchip/armada-370-xp: Put __init attribute after return type in mpic_ipi_init() X-Git-Tag: v6.12-rc1~195^2~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4d4d4a642da83d869d2851c8c3732c699cbc08e;p=thirdparty%2Flinux.git irqchip/armada-370-xp: Put __init attribute after return type in mpic_ipi_init() For consistency with the rest of the driver, put the __init attribute after the return type of the mpic_ipi_init() function. Signed-off-by: Marek BehĂșn Signed-off-by: Thomas Gleixner --- diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c index f5a693745785e..07004ecec1655 100644 --- a/drivers/irqchip/irq-armada-370-xp.c +++ b/drivers/irqchip/irq-armada-370-xp.c @@ -456,7 +456,7 @@ static void mpic_ipi_resume(void) } } -static __init int mpic_ipi_init(struct device_node *node) +static int __init mpic_ipi_init(struct device_node *node) { int base_ipi;