diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-07-13 15:19:29 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-15 12:12:18 -0600 |
commit | 5f9a3003be1d9657cf450e3dedf56e92a7415e07 (patch) | |
tree | ec216df2ef7495ce19244f932c8d2d8c045ffaf7 /arch/powerpc/cpu/mpc83xx/interrupts.c | |
parent | 66710564025716645d3aad8c7be6da977d913d2f (diff) |
ppc: Remove duplicate newlines
Drop all duplicate newlines. No functional change.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc83xx/interrupts.c')
-rw-r--r-- | arch/powerpc/cpu/mpc83xx/interrupts.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/cpu/mpc83xx/interrupts.c b/arch/powerpc/cpu/mpc83xx/interrupts.c index d86c981811e..af517213f17 100644 --- a/arch/powerpc/cpu/mpc83xx/interrupts.c +++ b/arch/powerpc/cpu/mpc83xx/interrupts.c @@ -32,7 +32,6 @@ void interrupt_init_cpu (unsigned *decrementer_count) immr->sysconf.spcr |= 0x00400000; } - /* * Handle external interrupts */ @@ -41,7 +40,6 @@ void external_interrupt(struct pt_regs *regs) { } - /* * Install and free an interrupt handler. */ @@ -51,19 +49,16 @@ irq_install_handler(int irq, interrupt_handler_t * handler, void *arg) { } - void irq_free_handler(int irq) { } - void timer_interrupt_cpu (struct pt_regs *regs) { /* nothing to do here */ return; } - #if defined(CONFIG_CMD_IRQ) /* ripped this out of ppc4xx/interrupts.c */ |