Index: uspace/lib/c/arch/amd64/src/entryjmp.s
===================================================================
--- uspace/lib/c/arch/amd64/src/entryjmp.s	(revision 9ce068327015d9cf93bd07491b950880816e4f0e)
+++ uspace/lib/c/arch/amd64/src/entryjmp.s	(revision e4c8e7517a904e945321629fba4185c25e20de29)
@@ -39,5 +39,5 @@
 	mov %rdi, %rdx
 	mov %rsi, %rdi
-
+	
 	# jump to entry point
 	jmp %rdx
Index: uspace/lib/c/arch/amd64/src/fibril.S
===================================================================
--- uspace/lib/c/arch/amd64/src/fibril.S	(revision 9ce068327015d9cf93bd07491b950880816e4f0e)
+++ uspace/lib/c/arch/amd64/src/fibril.S	(revision e4c8e7517a904e945321629fba4185c25e20de29)
@@ -42,15 +42,14 @@
 	movq (%rsp), %rdx     # the caller's return %eip
 	
-	# In %edi is passed 1st argument
+	# in %edi is passed 1st argument
 	CONTEXT_SAVE_ARCH_CORE %rdi %rdx 
 	
-	# Save TLS
+	# save TLS
 	movq %fs:0, %rax
 	movq %rax, OFFSET_TLS(%rdi)
-		
-	xorl %eax, %eax		# context_save returns 1
+	
+	xorl %eax, %eax       # context_save returns 1
 	incl %eax
 	ret
-
 
 ## Restore current CPU context
@@ -64,10 +63,10 @@
 	
 	movq %rdx,(%rsp)
-
+	
 	# Set thread local storage
-	movq OFFSET_TLS(%rdi), %rdi   # Set arg1 to TLS addr
-	movl $1, %eax		# SYS_TLS_SET
+	movq OFFSET_TLS(%rdi), %rdi  # Set arg1 to TLS addr
+	movl $1, %eax                # SYS_TLS_SET
 	syscall
-
-	xorl %eax, %eax		# context_restore returns 0
+	
+	xorl %eax, %eax              # context_restore returns 0
 	ret
Index: uspace/lib/c/arch/amd64/src/thread_entry.s
===================================================================
--- uspace/lib/c/arch/amd64/src/thread_entry.s	(revision 9ce068327015d9cf93bd07491b950880816e4f0e)
+++ uspace/lib/c/arch/amd64/src/thread_entry.s	(revision e4c8e7517a904e945321629fba4185c25e20de29)
@@ -40,5 +40,5 @@
 	pushq $0
 	movq %rsp, %rbp
-
+	
 	#
 	# RAX contains address of uarg
