diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-01-24 20:55:10 +0100 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-01-25 09:53:52 +0100 |
commit | a14a96d7560687d328e3702682c94b549e1c3911 (patch) | |
tree | 5b21624b9ce8f1ff12943c3dccf1724f911ceea9 /arch/arm/mach-iop32x | |
parent | ARM: mm: make vmalloc_seq handling SMP safe (diff) | |
download | linux-a14a96d7560687d328e3702682c94b549e1c3911.tar.xz linux-a14a96d7560687d328e3702682c94b549e1c3911.zip |
ARM: iop: make iop_handle_irq() static
The build bots complain about iop_handle_irq() not being declared so
let's make it static instead.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'arch/arm/mach-iop32x')
-rw-r--r-- | arch/arm/mach-iop32x/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-iop32x/irq.c b/arch/arm/mach-iop32x/irq.c index b820839eaae8..6dca7e97d81f 100644 --- a/arch/arm/mach-iop32x/irq.c +++ b/arch/arm/mach-iop32x/irq.c @@ -59,7 +59,7 @@ struct irq_chip ext_chip = { .irq_unmask = iop32x_irq_unmask, }; -void iop_handle_irq(struct pt_regs *regs) +static void iop_handle_irq(struct pt_regs *regs) { u32 mask; |