Index: abi/include/abi/ddi/irq.h
===================================================================
--- abi/include/abi/ddi/irq.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/ddi/irq.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -49,5 +49,5 @@
 	 */
 	CMD_PIO_READ_8 = 1,
-	
+
 	/** Read 2 bytes from the I/O space.
 	 *
@@ -55,5 +55,5 @@
 	 */
 	CMD_PIO_READ_16,
-	
+
 	/** Read 4 bytes from the I/O space.
 	 *
@@ -61,5 +61,5 @@
 	 */
 	CMD_PIO_READ_32,
-	
+
 	/** Write 1 byte to the I/O space.
 	 *
@@ -67,5 +67,5 @@
 	 */
 	CMD_PIO_WRITE_8,
-	
+
 	/** Write 2 bytes to the I/O space.
 	 *
@@ -73,5 +73,5 @@
 	 */
 	CMD_PIO_WRITE_16,
-	
+
 	/** Write 4 bytes to the I/O space.
 	 *
@@ -79,5 +79,5 @@
 	 */
 	CMD_PIO_WRITE_32,
-	
+
 	/** Write 1 byte to the I/O space.
 	 *
@@ -85,5 +85,5 @@
 	 */
 	CMD_PIO_WRITE_A_8,
-	
+
 	/** Write 2 bytes to the I/O space.
 	 *
@@ -91,5 +91,5 @@
 	 */
 	CMD_PIO_WRITE_A_16,
-	
+
 	/** Write 4 bytes to the I/O space.
 	 *
@@ -97,5 +97,5 @@
 	 */
 	CMD_PIO_WRITE_A_32,
-	
+
 	/** Load value.
 	 *
@@ -103,5 +103,5 @@
 	 */
 	CMD_LOAD,
-	
+
 	/** Perform bitwise conjunction.
 	 *
@@ -109,5 +109,5 @@
 	 */
 	CMD_AND,
-	
+
 	/** Predicate the execution of the following commands.
 	 *
@@ -116,8 +116,8 @@
 	 */
 	CMD_PREDICATE,
-	
+
 	/** Accept the interrupt. */
 	CMD_ACCEPT,
-	
+
 	/** Decline the interrupt. */
 	CMD_DECLINE,
Index: abi/include/abi/ipc/interfaces.h
===================================================================
--- abi/include/abi/ipc/interfaces.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/ipc/interfaces.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -53,5 +53,5 @@
 	 */
 	IFACE_EXCHANGE_ATOMIC = 0x00,
-	
+
 	/** Exchange management via mutual exclusion
 	 *
@@ -61,5 +61,5 @@
 	 */
 	IFACE_EXCHANGE_SERIALIZE = 0x01,
-	
+
 	/** Exchange management via connection cloning
 	 *
Index: abi/include/abi/log.h
===================================================================
--- abi/include/abi/log.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/log.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -52,5 +52,5 @@
 	/** More detailed debugging message. */
 	LVL_DEBUG2,
-	
+
 	/** For checking range of values */
 	LVL_LIMIT
Index: abi/include/abi/mm/as.h
===================================================================
--- abi/include/abi/mm/as.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/mm/as.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -53,8 +53,8 @@
 	/** Starting address */
 	uintptr_t start_addr;
-	
+
 	/** Area size */
 	size_t size;
-	
+
 	/** Area flags */
 	unsigned int flags;
Index: abi/include/abi/proc/uarg.h
===================================================================
--- abi/include/abi/proc/uarg.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/proc/uarg.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -43,8 +43,8 @@
 	void *uspace_stack;
 	size_t uspace_stack_size;
-	
+
 	void (*uspace_thread_function)(void *);
 	void *uspace_thread_arg;
-	
+
 	struct uspace_arg *uspace_uarg;
 } uspace_arg_t;
Index: abi/include/abi/syscall.h
===================================================================
--- abi/include/abi/syscall.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/syscall.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -38,5 +38,5 @@
 typedef enum {
 	SYS_KIO = 0,
-	
+
 	SYS_THREAD_CREATE,
 	SYS_THREAD_EXIT,
@@ -44,5 +44,5 @@
 	SYS_THREAD_USLEEP,
 	SYS_THREAD_UDELAY,
-	
+
 	SYS_TASK_GET_ID,
 	SYS_TASK_SET_NAME,
@@ -50,17 +50,17 @@
 	SYS_TASK_EXIT,
 	SYS_PROGRAM_SPAWN_LOADER,
-	
+
 	SYS_FUTEX_SLEEP,
 	SYS_FUTEX_WAKEUP,
 	SYS_SMC_COHERENCE,
 	SYS_SMP_MEMORY_BARRIER,
-	
+
 	SYS_AS_AREA_CREATE,
 	SYS_AS_AREA_RESIZE,
 	SYS_AS_AREA_CHANGE_FLAGS,
 	SYS_AS_AREA_DESTROY,
-	
+
 	SYS_PAGE_FIND_MAPPING,
-	
+
 	SYS_IPC_CALL_ASYNC_FAST,
 	SYS_IPC_CALL_ASYNC_SLOW,
@@ -73,12 +73,12 @@
 	SYS_IPC_HANGUP,
 	SYS_IPC_CONNECT_KBOX,
-	
+
 	SYS_IPC_EVENT_SUBSCRIBE,
 	SYS_IPC_EVENT_UNSUBSCRIBE,
 	SYS_IPC_EVENT_UNMASK,
-	
+
 	SYS_PERM_GRANT,
 	SYS_PERM_REVOKE,
-	
+
 	SYS_PHYSMEM_MAP,
 	SYS_PHYSMEM_UNMAP,
@@ -87,8 +87,8 @@
 	SYS_IOSPACE_ENABLE,
 	SYS_IOSPACE_DISABLE,
-	
+
 	SYS_IPC_IRQ_SUBSCRIBE,
 	SYS_IPC_IRQ_UNSUBSCRIBE,
-	
+
 	SYS_SYSINFO_GET_KEYS_SIZE,
 	SYS_SYSINFO_GET_KEYS,
@@ -97,9 +97,9 @@
 	SYS_SYSINFO_GET_DATA_SIZE,
 	SYS_SYSINFO_GET_DATA,
-	
+
 	SYS_DEBUG_CONSOLE,
-	
+
 	SYS_KLOG,
-	
+
 	SYSCALL_END
 } syscall_t;
Index: abi/include/abi/udebug.h
===================================================================
--- abi/include/abi/udebug.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ abi/include/abi/udebug.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
@@ -39,5 +39,5 @@
 
 typedef enum { /* udebug_method_t */
-	
+
 	/** Start debugging the recipient.
 	 *
@@ -47,5 +47,5 @@
 	 */
 	UDEBUG_M_BEGIN = 1,
-	
+
 	/** Finish debugging the recipient.
 	 *
@@ -54,8 +54,8 @@
 	 */
 	UDEBUG_M_END,
-	
+
 	/** Set which events should be captured. */
 	UDEBUG_M_SET_EVMASK,
-	
+
 	/** Make sure the debugged task is still there.
 	 *
@@ -65,5 +65,5 @@
 	 */
 	UDEBUG_M_GUARD,
-	
+
 	/** Run a thread until a debugging event occurs.
 	 *
@@ -75,5 +75,5 @@
 	 */
 	UDEBUG_M_GO,
-	
+
 	/** Stop a thread being debugged.
 	 *
@@ -83,5 +83,5 @@
 	 */
 	UDEBUG_M_STOP,
-	
+
 	/** Read arguments of a syscall.
 	 *
@@ -91,5 +91,5 @@
 	 */
 	UDEBUG_M_ARGS_READ,
-	
+
 	/** Read thread's userspace register state (istate_t).
 	 *
@@ -102,5 +102,5 @@
 	 */
 	UDEBUG_M_REGS_READ,
-	
+
 	/** Read the list of the debugged tasks's threads.
 	 *
@@ -116,5 +116,5 @@
 	 */
 	UDEBUG_M_THREAD_READ,
-	
+
 	/** Read the name of the debugged task.
 	 *
@@ -129,5 +129,5 @@
 	 */
 	UDEBUG_M_NAME_READ,
-	
+
 	/** Read the list of the debugged task's address space areas.
 	 *
@@ -143,5 +143,5 @@
 	 */
 	UDEBUG_M_AREAS_READ,
-	
+
 	/** Read the debugged tasks's memory.
 	 *
