diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2016-09-05 08:42:31 +0200 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-09-25 09:38:54 +0200 |
commit | f307939fb260c83e6875476695ac58a669348b8f (patch) | |
tree | 033e0db1352e0af21a5b4725b8dccc350ea86aae /arch/powerpc/kernel/head_8xx.S | |
parent | powerpc/fsl_pci: Size upper inbound window based on RAM size (diff) | |
download | linux-f307939fb260c83e6875476695ac58a669348b8f.tar.xz linux-f307939fb260c83e6875476695ac58a669348b8f.zip |
powerpc/8xx: add system_reset_exception
When the watchdog is in NMI mode, the system reset interrupt is
generated when the watchdog counter expires.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'arch/powerpc/kernel/head_8xx.S')
-rw-r--r-- | arch/powerpc/kernel/head_8xx.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/head_8xx.S b/arch/powerpc/kernel/head_8xx.S index 3a185c51ce8f..f559f217cd87 100644 --- a/arch/powerpc/kernel/head_8xx.S +++ b/arch/powerpc/kernel/head_8xx.S @@ -226,7 +226,7 @@ i##n: \ ret_from_except) /* System reset */ - EXCEPTION(0x100, Reset, unknown_exception, EXC_XFER_STD) + EXCEPTION(0x100, Reset, system_reset_exception, EXC_XFER_STD) /* Machine check */ . = 0x200 |