Index: kernel/arch/mips32/src/cache.c
===================================================================
--- kernel/arch/mips32/src/cache.c	(revision 7ed2d8f913a802b35d24afa1cf356ce0b315b603)
+++ kernel/arch/mips32/src/cache.c	(revision 0832b4dbf61c47e06454103bfe90ded222688108)
@@ -39,5 +39,5 @@
 void cache_error(istate_t *istate)
 {
-	panic("cache_error exception (epc=%p)\n", istate->epc);
+	panic("cache_error exception (epc=%p).", istate->epc);
 }
 
Index: kernel/arch/mips32/src/debugger.c
===================================================================
--- kernel/arch/mips32/src/debugger.c	(revision 7ed2d8f913a802b35d24afa1cf356ce0b315b603)
+++ kernel/arch/mips32/src/debugger.c	(revision 0832b4dbf61c47e06454103bfe90ded222688108)
@@ -317,5 +317,5 @@
 	/* test branch delay slot */
 	if (cp0_cause_read() & 0x80000000)
-		panic("Breakpoint in branch delay slot not supported.\n");
+		panic("Breakpoint in branch delay slot not supported.");
 
 	spinlock_lock(&bkpoint_lock);
Index: kernel/arch/mips32/src/exception.c
===================================================================
--- kernel/arch/mips32/src/exception.c	(revision 7ed2d8f913a802b35d24afa1cf356ce0b315b603)
+++ kernel/arch/mips32/src/exception.c	(revision 0832b4dbf61c47e06454103bfe90ded222688108)
@@ -89,8 +89,8 @@
 static void unhandled_exception(int n, istate_t *istate)
 {
-	fault_if_from_uspace(istate, "Unhandled exception %s", exctable[n]);
+	fault_if_from_uspace(istate, "Unhandled exception %s.", exctable[n]);
 	
 	print_regdump(istate);
-	panic("Unhandled exception %s.\n", exctable[n]);
+	panic("Unhandled exception %s.", exctable[n]);
 }
 
@@ -133,6 +133,6 @@
 		scheduler_fpu_lazy_request();
 	else {
-		fault_if_from_uspace(istate, "Unhandled Coprocessor Unusable Exception");
-		panic("Unhandled Coprocessor Unusable Exception.\n");
+		fault_if_from_uspace(istate, "Unhandled Coprocessor Unusable Exception.");
+		panic("Unhandled Coprocessor Unusable Exception.");
 	}
 }
@@ -171,5 +171,5 @@
 static void syscall_exception(int n, istate_t *istate)
 {
-	panic("Syscall is handled through shortcut");
+	panic("Syscall is handled through shortcut.");
 }
 
Index: kernel/arch/mips32/src/mm/tlb.c
===================================================================
--- kernel/arch/mips32/src/mm/tlb.c	(revision 7ed2d8f913a802b35d24afa1cf356ce0b315b603)
+++ kernel/arch/mips32/src/mm/tlb.c	(revision 0832b4dbf61c47e06454103bfe90ded222688108)
@@ -116,5 +116,5 @@
 			return;
 		default:
-			panic("unexpected pfrc (%d)\n", pfrc);
+			panic("Unexpected pfrc (%d).", pfrc);
 		}
 	}
@@ -200,5 +200,5 @@
 			return;
 		default:
-			panic("unexpected pfrc (%d)\n", pfrc);
+			panic("Unexpected pfrc (%d).", pfrc);
 		}
 	}
@@ -283,5 +283,5 @@
 			return;
 		default:
-			panic("unexpected pfrc (%d)\n", pfrc);
+			panic("Unexpected pfrc (%d).", pfrc);
 		}
 	}
@@ -331,7 +331,7 @@
 		sym2 = s;
 
-	fault_if_from_uspace(istate, "TLB Refill Exception on %p",
+	fault_if_from_uspace(istate, "TLB Refill Exception on %p.",
 	    cp0_badvaddr_read());
-	panic("%x: TLB Refill Exception at %x(%s<-%s).\n", cp0_badvaddr_read(),
+	panic("%x: TLB Refill Exception at %x(%s<-%s).", cp0_badvaddr_read(),
 	    istate->epc, symbol, sym2);
 }
@@ -345,7 +345,7 @@
 	if (s)
 		symbol = s;
-	fault_if_from_uspace(istate, "TLB Invalid Exception on %p",
+	fault_if_from_uspace(istate, "TLB Invalid Exception on %p.",
 	    cp0_badvaddr_read());
-	panic("%x: TLB Invalid Exception at %x(%s).\n", cp0_badvaddr_read(),
+	panic("%x: TLB Invalid Exception at %x(%s).", cp0_badvaddr_read(),
 	    istate->epc, symbol);
 }
@@ -358,7 +358,7 @@
 	if (s)
 		symbol = s;
-	fault_if_from_uspace(istate, "TLB Modified Exception on %p",
+	fault_if_from_uspace(istate, "TLB Modified Exception on %p.",
 	    cp0_badvaddr_read());
-	panic("%x: TLB Modified Exception at %x(%s).\n", cp0_badvaddr_read(),
+	panic("%x: TLB Modified Exception at %x(%s).", cp0_badvaddr_read(),
 	    istate->epc, symbol);
 }
@@ -434,5 +434,5 @@
 			break;
 		default:
-			panic("unexpected rc (%d)\n", rc);
+			panic("Unexpected rc (%d).", rc);
 		}
 		
