summaryrefslogtreecommitdiff
path: root/arch/powerpc/platforms
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2021-01-30 16:08:21 +0300
committerMichael Ellerman <mpe@ellerman.id.au>2021-02-08 16:02:09 +0300
commit8458c628a53ba4311b2df12370be1a6f1870ff37 (patch)
tree483665572dcf2137b43943c1a0db08e247857dfe /arch/powerpc/platforms
parent73d7a97914f23397b012e851f6a1fe4061923a82 (diff)
downloadlinux-8458c628a53ba4311b2df12370be1a6f1870ff37.tar.xz
powerpc: bad_page_fault get registers from regs
Similar to the previous patch this makes interrupt handler function types more regular so they can be wrapped with the next patch. 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-12-npiggin@gmail.com
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r--arch/powerpc/platforms/8xx/machine_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/8xx/machine_check.c b/arch/powerpc/platforms/8xx/machine_check.c
index 88dedf38eccd..656365975895 100644
--- a/arch/powerpc/platforms/8xx/machine_check.c
+++ b/arch/powerpc/platforms/8xx/machine_check.c
@@ -26,7 +26,7 @@ int machine_check_8xx(struct pt_regs *regs)
* to deal with that than having a wart in the mcheck handler.
* -- BenH
*/
- bad_page_fault(regs, regs->dar, SIGBUS);
+ bad_page_fault(regs, SIGBUS);
return 1;
#else
return 0;