[tip: irq/core] irqchip/armada-370-xp: Put __init attribute after return type in mpic_ipi_init()

From: tip-bot2 for Marek Behún
Date: Thu Aug 08 2024 - 11:24:46 EST


The following commit has been merged into the irq/core branch of tip:

Commit-ID: a4d4d4a642da83d869d2851c8c3732c699cbc08e
Gitweb: https://git.kernel.org/tip/a4d4d4a642da83d869d2851c8c3732c699cbc08e
Author: Marek Behún <kabel@xxxxxxxxxx>
AuthorDate: Wed, 07 Aug 2024 18:40:56 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitterDate: Thu, 08 Aug 2024 17:15:00 +02:00

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 <kabel@xxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>

---
drivers/irqchip/irq-armada-370-xp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c
index f5a6937..07004ec 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;