.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | | - * This program is free software; you can redistribute it and/or |
---|
3 | | - * modify it under the terms of the GNU General Public License |
---|
4 | | - * as published by the Free Software Foundation; either version |
---|
5 | | - * 2 of the License, or (at your option) any later version. |
---|
6 | 3 | */ |
---|
7 | 4 | |
---|
8 | 5 | #include <linux/kernel.h> |
---|
.. | .. |
---|
18 | 15 | pr_err("Machine check in kernel mode.\n"); |
---|
19 | 16 | pr_err("Caused by (from SRR1=%lx): ", reason); |
---|
20 | 17 | if (reason & 0x40000000) |
---|
21 | | - pr_err("Fetch error at address %lx\n", regs->nip); |
---|
| 18 | + pr_cont("Fetch error at address %lx\n", regs->nip); |
---|
22 | 19 | else |
---|
23 | | - pr_err("Data access error at address %lx\n", regs->dar); |
---|
| 20 | + pr_cont("Data access error at address %lx\n", regs->dar); |
---|
24 | 21 | |
---|
25 | 22 | #ifdef CONFIG_PCI |
---|
26 | 23 | /* the qspan pci read routines can cause machine checks -- Cort |
---|