diff options
author | Paul Burton <paul.burton@mips.com> | 2019-02-16 01:22:44 +0300 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2019-02-16 01:22:44 +0300 |
commit | 462fb81b267d580b933d7d875bb634962a357980 (patch) | |
tree | 06c4c755c5def72cb503b4dcc50d3ceabdfe03dc /arch/mips/kernel | |
parent | 63f7541ce56253fbfc516044ecb31b1c3a6c6333 (diff) | |
download | linux-462fb81b267d580b933d7d875bb634962a357980.tar.xz |
MIPS: CM: Fix indentation
mips_cm_error_report() contains a function call that's incorrectly
indented a level further than it ought to be. Remove a tab from the
start of both affected lines.
Signed-off-by: Paul Burton <paul.burton@mips.com>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/mips-cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/mips-cm.c b/arch/mips/kernel/mips-cm.c index 8f5bd04f320a..8c999afef0b5 100644 --- a/arch/mips/kernel/mips-cm.c +++ b/arch/mips/kernel/mips-cm.c @@ -382,8 +382,8 @@ void mips_cm_error_report(void) sc_bit ? "True" : "False", cm2_cmd[cmd_bits], sport_bits); } - pr_err("CM_ERROR=%08llx %s <%s>\n", cm_error, - cm2_causes[cause], buf); + pr_err("CM_ERROR=%08llx %s <%s>\n", cm_error, + cm2_causes[cause], buf); pr_err("CM_ADDR =%08llx\n", cm_addr); pr_err("CM_OTHER=%08llx %s\n", cm_other, cm2_causes[ocause]); } else { /* CM3 */ |