diff options
| author | Marek BehĂșn <kabel@kernel.org> | 2024-08-07 18:40:56 +0200 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2024-08-08 17:15:00 +0200 |
| commit | a4d4d4a642da83d869d2851c8c3732c699cbc08e (patch) | |
| tree | 8eb8f90908b2073ecddecd0768744b09f9d25cb2 /drivers/irqchip/irq-armada-370-xp.c | |
| parent | 37e130c224fd0da168570003355fcbd091a87030 (diff) | |
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@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/irqchip/irq-armada-370-xp.c')
| -rw-r--r-- | drivers/irqchip/irq-armada-370-xp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c index f5a693745785..07004ecec165 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; |