projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6335fa
)
MIPS: kernel: traps: Fix broken indentation
author
Markos Chandras
<
[email protected]
>
Wed, 24 Jun 2015 08:29:20 +0000
(09:29 +0100)
committer
Ralf Baechle
<
[email protected]
>
Thu, 9 Jul 2015 09:09:47 +0000
(11:09 +0200)
Fix broken indentation caused by the SMTC removal
commit
b633648c5ad3cfbda0b3daea50d2135d44899259
("MIPS: MT: Remove SMTC support")
Signed-off-by: Markos Chandras <
[email protected]
>
Fixes: b633648c5ad3c ("MIPS: MT: Remove SMTC support")
Cc:
[email protected]
Patchwork: https://patchwork.linux-mips.org/patch/10581/
Signed-off-by: Ralf Baechle <
[email protected]
>
arch/mips/kernel/traps.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/traps.c
b/arch/mips/kernel/traps.c
index 2a7b38ed23f06e817bba6187b8890b98489e168d..e207a43b5f8f0bcbf0544e5289cfc08126cbc7f5 100644
(file)
--- a/
arch/mips/kernel/traps.c
+++ b/
arch/mips/kernel/traps.c
@@
-2130,10
+2130,10
@@
void per_cpu_trap_init(bool is_boot_cpu)
BUG_ON(current->mm);
enter_lazy_tlb(&init_mm, current);
-
/* Boot CPU's cache setup in setup_arch(). */
-
if (!is_boot_cpu)
-
cpu_cache_init();
-
tlb_init();
+ /* Boot CPU's cache setup in setup_arch(). */
+ if (!is_boot_cpu)
+ cpu_cache_init();
+ tlb_init();
TLBMISS_HANDLER_SETUP();
}