Index: arch/mips/src/asm.s
===================================================================
--- arch/mips/src/asm.s	(revision babcb14871c9712680b4a8eaff315215bbc41404)
+++ arch/mips/src/asm.s	(revision 4e1d008f0a336b65b7e5ee6c99877490114a7ecd)
@@ -30,13 +30,13 @@
 
 .macro cp0_read reg
-    mfc0 $2,\reg
-    j $31
-    nop
+	mfc0 $2,\reg
+	j $31
+	nop
 .endm
 
 .macro cp0_write reg
-    mtc0 $4,\reg
-    j $31
-    nop
+	mtc0 $4,\reg
+	j $31
+	nop
 .endm
 
Index: arch/mips/src/fake.s
===================================================================
--- arch/mips/src/fake.s	(revision babcb14871c9712680b4a8eaff315215bbc41404)
+++ arch/mips/src/fake.s	(revision 4e1d008f0a336b65b7e5ee6c99877490114a7ecd)
@@ -39,4 +39,4 @@
 calibrate_delay_loop:
 asm_delay_loop:
-    j $31
-    nop
+	j $31
+	nop
Index: arch/mips/src/start.S
===================================================================
--- arch/mips/src/start.S	(revision babcb14871c9712680b4a8eaff315215bbc41404)
+++ arch/mips/src/start.S	(revision 4e1d008f0a336b65b7e5ee6c99877490114a7ecd)
@@ -45,47 +45,47 @@
 kernel_image_start:
 tlb_refill_entry:
-    j tlb_refill_handler
-    nop
+	j tlb_refill_handler
+	nop
 
 .org 0x100
 cache_error_entry:
-    j cache_error_handler
-    nop
+	j cache_error_handler
+	nop
     
 .org 0x180
 exception_entry:
 exception_handler:
-    sub $29, STACK_SPACE
-    REGISTERS_STORE $29
+	sub $29, STACK_SPACE
+	REGISTERS_STORE $29
     
-    jal exception
-    nop
+	jal exception
+	nop
     
-    REGISTERS_LOAD $29
-    add $29, STACK_SPACE
+	REGISTERS_LOAD $29
+	add $29, STACK_SPACE
 
-    eret
+	eret
 
 tlb_refill_handler:
-    sub $29, STACK_SPACE
-    REGISTERS_STORE $29
+	sub $29, STACK_SPACE
+	REGISTERS_STORE $29
     
-    jal tlb_refill
-    nop
+	jal tlb_refill
+	nop
     
-    REGISTERS_LOAD $29
-    add $29, STACK_SPACE
+	REGISTERS_LOAD $29
+	add $29, STACK_SPACE
     
-    eret
+	eret
 
 cache_error_handler:
-    sub $29, STACK_SPACE
-    REGISTERS_STORE $29
+	sub $29, STACK_SPACE
+	REGISTERS_STORE $29
 
-    jal cache_error
-    nop
+	jal cache_error
+	nop
     
-    REGISTERS_LOAD $29
-    add $29, STACK_SPACE
+	REGISTERS_LOAD $29
+	add $29, STACK_SPACE
 
-    eret
+	eret
