diff options
| author | 2021-01-30 23:08:31 +1000 | |
|---|---|---|
| committer | 2021-02-09 00:02:11 +1100 | |
| commit | 6c6aee009ec34cb7f5ef76f910c1b9417c81efd8 (patch) | |
| tree | f05cf0b1d15d4ab1661ef0b00f5a8130df866fce /arch/powerpc/include/asm/hw_irq.h | |
| parent | powerpc/time: move timer_broadcast_interrupt prototype to asm/time.h (diff) | |
| download | linux-dev-6c6aee009ec34cb7f5ef76f910c1b9417c81efd8.tar.xz linux-dev-6c6aee009ec34cb7f5ef76f910c1b9417c81efd8.zip | |
powerpc: add and use unknown_async_exception
This is currently the same as unknown_exception, but it will diverge
after interrupt wrappers are added and code moved out of asm into the
wrappers (e.g., async handlers will check FINISH_NAP).
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210130130852.2952424-22-npiggin@gmail.com
Diffstat (limited to 'arch/powerpc/include/asm/hw_irq.h')
| -rw-r--r-- | arch/powerpc/include/asm/hw_irq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/hw_irq.h b/arch/powerpc/include/asm/hw_irq.h index e5def36212cf..75c2b137fc00 100644 --- a/arch/powerpc/include/asm/hw_irq.h +++ b/arch/powerpc/include/asm/hw_irq.h @@ -57,6 +57,7 @@ extern void timer_interrupt(struct pt_regs *); extern void performance_monitor_exception(struct pt_regs *regs); extern void WatchdogException(struct pt_regs *regs); extern void unknown_exception(struct pt_regs *regs); +void unknown_async_exception(struct pt_regs *regs); #ifdef CONFIG_PPC64 #include <asm/paca.h> |
