Index: contrib/arch/HelenOS.adl
===================================================================
--- contrib/arch/HelenOS.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/HelenOS.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,26 +2,26 @@
 	/* SPARTAN kernel */
 	inst kernel kernel;
-	
+
 	/* Naming Service */
 	inst ns ns;
-	
+
 	/* Loader (clonable service) */
 	inst loader loader;
-	
+
 	/* Device mapper */
 	inst devmap devmap;
-	
+
 	/* Block device */
 	inst bd bd;
-	
+
 	/* VFS server */
 	inst vfs vfs;
-	
+
 	/* Console */
 	inst console console;
-	
+
 	/* Kernel log */
 	inst kio kio;
-	
+
 	[/uspace/lib/libc/bind%ns]
 	[/uspace/lib/libc/bind%loader]
@@ -31,5 +31,5 @@
 	[/uspace/lib/libc/bind%console]
 	[/uspace/lib/libc/bind%kio]
-	
+
 	bind ns:kbd to console:kbd;
 	bind ns:fb to console:fb;
@@ -39,23 +39,23 @@
 	bind ns:devmap_client to devmap:devmap_client;
 	bind ns:loader to loader:loader;
-	
+
 	bind loader:ns to ns:ns;
-	
+
 	bind devmap:ns to ns:ns;
 	bind devmap:rd to bd:rd;
 	bind devmap:console to console:console;
-	
+
 	bind bd:ns to ns:ns;
 	bind bd:devmap_driver to devmap:devmap_driver;
-	
+
 	bind vfs:ns to ns:ns;
 	bind vfs:rd to bd:rd;
 	bind vfs:devmap_client to devmap:devmap_client;
 	bind vfs:device to console:console;
-	
+
 	bind console:ns to ns:ns;
 	bind console:devmap_driver to devmap:devmap_driver;
 	bind console:sys_console to kernel:sys_console;
-	
+
 	bind kio:ns to ns:ns;
 };
Index: contrib/arch/kernel/kernel.adl
===================================================================
--- contrib/arch/kernel/kernel.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/kernel/kernel.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -13,5 +13,5 @@
 		/* Enable kernel console */
 		sysarg_t sys_debug_enable_console(void);
-		
+
 		/* Disable kernel console */
 		sysarg_t sys_debug_disable_console(void);
@@ -26,8 +26,8 @@
 		/* Create new thread */
 		sysarg_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name, size_t name_len, thread_id_t *uspace_thread_id);
-		
+
 		/* Terminate current thread */
 		sysarg_t sys_thread_exit(int uspace_status);
-		
+
 		/* Get current thread id */
 		sysarg_t sys_thread_get_id(thread_id_t *uspace_thread_id);
@@ -43,5 +43,5 @@
 		/* Set name fo the current task */
 		sysarg_t sys_task_set_name(const char *uspace_name, size_t name_len);
-		
+
 		/* Get current task id */
 		sysarg_t sys_task_get_id(task_id_t *uspace_task_id);
@@ -63,5 +63,5 @@
 		/* Sleep in a futex wait queue */
 		sysarg_t sys_futex_sleep_timeout(uintptr_t uaddr, uint32_t usec, int flags);
-		
+
 		/* Wakeup one thread waiting in futex wait queue */
 		sysarg_t sys_futex_wakeup(uintptr_t uaddr);
@@ -83,11 +83,11 @@
 		/* Create new address space area */
 		sysarg_t sys_as_area_create(uintptr_t address, size_t size, int flags);
-		
+
 		/* Resize an address space area */
 		sysarg_t sys_as_area_resize(uinptr_t address, size_t size, int flags);
-		
+
 		/* Change flags of an address space area */
 		sysarg_t sys_as_area_change_flags(uintptr_t address, int flags);
-		
+
 		/* Destroy an address space area */
 		sysarg_t sys_as_area_destroy(uintptr_t address);
@@ -104,32 +104,32 @@
 		/* Fast synchronous IPC call */
 		sysarg_t sys_ipc_call_sync_fast(sysarg_t phoneid, sysarg_t method, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3, ipc_data_t *data);
-		
+
 		/* Slow synchronous IPC call */
 		sysarg_t sys_ipc_call_sync_slow(sysarg_t phoneid, ipc_data_t *question, ipc_data_t *answer);
-		
+
 		/* Fast asynchronous IPC call */
 		sysarg_t sys_ipc_call_async_fast(sysarg_t phoneid, sysarg_t method, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3, sysarg_t arg4);
-		
+
 		/* Slow asynchronous IPC call */
 		sysarg_t sys_ipc_call_async_slow(sysarg_t phoneid, ipc_data_t *data);
-		
+
 		/* Fast forward a received IPC call to another destination */
 		sysarg_t sys_ipc_forward_fast(sysarg_t callid, sysarg_t phoneid, sysarg_t method, sysarg_t arg1, sysarg_t arg2, int mode);
-		
+
 		/* Slow forward a received IPC call to another destination */
 		sysarg_t sys_ipc_forward_slow(sysarg_t callid, sysarg_t phoneid, ipc_data_t *data, int mode);
-		
+
 		/* Fast answer an IPC call */
 		sysarg_t sys_ipc_answer_fast(sysarg_t callid, sysarg_t retval, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3, sysarg_t arg4);
-		
+
 		/* Slow answer an IPC call */
 		sysarg_t sys_ipc_answer_slow(sysarg_t callid, ipc_data_t *data);
-		
+
 		/* Hang up a phone */
 		sysarg_t sys_ipc_hangup(int phoneid);
-		
+
 		/* Wait for an incoming IPC call or answer */
 		sysarg_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int flags);
-		
+
 		/* Interrupt one thread of the current task from waiting on IPC call */
 		sysarg_t sys_ipc_poke(void);
@@ -162,14 +162,14 @@
 		sysarg_t sys_cap_grant(sysarg64_t *uspace_taskid, cap_t caps);
 #endif
-		
+
 #ifdef __64_BITS__
 		sysarg_t sys_cap_grant(sysarg_t taskid, cap_t caps);
 #endif
-		
+
 		/* Revoke capabilities from a task */
 #ifdef __32_BITS__
 		sysarg_t sys_cap_revoke(sysarg64_t *uspace_taskid, cap_t caps);
 #endif
-		
+
 #ifdef __64_BITS__
 		sysarg_t sys_cap_revoke(sysarg_t taskid, cap_t caps);
@@ -185,17 +185,17 @@
 		/* Enable access I/O address space for the current task */
 		sysarg_t sys_enable_iospace(ddi_ioarg_t *uspace_io_arg);
-		
+
 		/* Map physical memory to the current task's address space */
 		sysarg_t sys_physmem_map(sysarg_t phys_base, sysarg_t virt_base, sysarg_t pages, sysarg_t flags);
-		
+
 		/* Enable or disable preemption */
 		sysarg_t sys_preempt_control(int enable);
-		
+
 		/* Assign unique device number */
 		sysarg_t sys_device_assign_devno(void);
-		
+
 		/* Connect an IRQ handler to the current task */
 		sysarg_t sys_register_irq(inr_t inr, devno_t devno, sysarg_t method, irq_code_t *ucode);
-		
+
 		/* Disconnect an IRQ handler from the current task */
 		sysarg_t sys_unregister_irq(inr_t inr, devno_t devno);
@@ -214,5 +214,5 @@
 		/* Check for sysinfo key validity */
 		sysarg_t sys_sysinfo_valid(sysarg_t ptr, sysarg_t len);
-		
+
 		/* Get sysinfo key value */
 		sysarg_t sys_sysinfo_value(unatice_t ptr, sysarg_t len);
@@ -229,5 +229,5 @@
 		sysarg_t sys_ipc_connect_kbox(sysarg64_t *uspace_taskid);
 #endif
-		
+
 #ifdef __64_BITS__
 		sysarg_t sys_ipc_connect_kbox(sysarg_t taskid);
@@ -308,5 +308,5 @@
 	inst sys_sysinfo sys_sysinfo;
 	inst sys_debug sys_debug;
-	
+
 	delegate sys_kio to sys_console:sys_kio;
 	delegate sys_console to sys_console:sys_console;
Index: contrib/arch/uspace/srv/bd/bd.adl
===================================================================
--- contrib/arch/uspace/srv/bd/bd.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/bd/bd.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,11 +2,11 @@
 		/* Share out data buffer */
 		sysarg_t ipc_m_share_out(in sysarg_t as_area_base, in sysarg_t as_area_size, in sysarg_t flags, out sysarg_t dst_as_area_base);
-		
+
 		/* Get block size */
 		sysarg_t get_block_size(out sysarg_t block_size);
-		
+
 		/* Read blocks via shared data buffer */
 		sysarg_t read_blocks(in sysarg_t index_lower, in sysarg_t index_upper, in sysarg_t count);
-		
+
 		/* Write blocks via shared data buffer */
 		sysarg_t write_blocks(in sysarg_t index_lower, in sysarg_t index_upper, in sysarg_t count);
@@ -17,9 +17,9 @@
 architecture bd {
 	inst rd rd;
-	
+
 	[/uspace/lib/libc/subsume%rd]
-	
+
 	delegate rd to rd:rd;
-	
+
 	subsume rd:ns to ns;
 	subsume rd:devmap_driver to devmap_driver;
Index: contrib/arch/uspace/srv/console/console.adl
===================================================================
--- contrib/arch/uspace/srv/console/console.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/console/console.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,38 +2,38 @@
 		/* Read characters from console */
 		sysarg_t read(out_copy stream data);
-		
+
 		/* Write characters to console */
 		sysarg_t write(in_copy stream data);
-		
+
 		/* Get last event from event queue */
 		sysarg_t get_event(out sysarg_t type, out sysarg_t key, out sysarg_t mods, out sysarg_t char);
-		
+
 		/* Flush output buffer */
 		sysarg_t sync(void);
-		
+
 		/* Clear console */
 		sysarg_t clear(void);
-		
+
 		/* Move cursor to given position */
 		sysarg_t goto(in sysarg_t col, in sysarg_t row);
-		
+
 		/* Get console dimensions (in character cells) */
 		sysarg_t get_size(out sysarg_t cols, in sysarg_t rows);
-		
+
 		/* Get color capabilities */
 		sysarg_t get_color_cap(void);
-		
+
 		/* Set abstract text style */
 		sysarg_t set_style(in sysarg_t style);
-		
+
 		/* Set EGA-based text color */
 		sysarg_t set_color(in sysarg_t fb_color, in sysarg_t bg_color, in sysarg_t attr);
-		
+
 		/* Set RGB-based text color */
 		sysarg_t set_rgb_color(in sysarg_t fb_color, in sysarg_t bg_color);
-		
+
 		/* Set cursor visibility */
 		sysarg_t cursor_visibility(in sysarg_t visible);
-		
+
 		/* Switch to kernel debugging console (if available) */
 		sysarg_t kcon_enable(void);
@@ -85,22 +85,22 @@
 	inst kbd kbd;
 	inst fb fb;
-	
+
 	bind ui_dispatcher:kbd to kbd:kbd;
 	bind ui_dispatcher:fb to fb:fb;
-	
+
 	bind kbd:event to ui_dispatcher:event;
-	
+
 	delegate console to ui_dispatcher:console;
 	delegate kbd to kbd:kbd;
 	delegate fb to fb:fb;
-	
+
 	[/uspace/lib/libc/subsume%ui_dispatcher]
 	[/uspace/lib/libc/subsume%kbd]
 	[/uspace/lib/libc/subsume%fb]
-	
+
 	subsume ui_dispatcher:ns to ns;
 	subsume ui_dispatcher:devmap_driver to devmap_driver;
 	subsume ui_dispatcher:sys_console to sys_console;
-	
+
 	subsume kbd:ns to ns;
 	subsume fb:ns to ns;
Index: contrib/arch/uspace/srv/console/console.bp
===================================================================
--- contrib/arch/uspace/srv/console/console.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/console/console.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -5,9 +5,9 @@
 		[fnc.cons_read]
 	} +
-	
+
 	?write {
 		[fnc.cons_write]
 	} +
-	
+
 	?sync {
 		[fnc.fb_pending_flush] ;
@@ -17,5 +17,5 @@
 		}
 	} +
-	
+
 	?clear {
 		tentative {
@@ -23,5 +23,5 @@
 		}
 	} +
-	
+
 	?goto {
 		tentative {
@@ -29,5 +29,5 @@
 		}
 	} +
-	
+
 	?set_style {
 		[fnc.fb_pending_flush] ;
@@ -36,5 +36,5 @@
 		}
 	} +
-	
+
 	?set_color {
 		[fnc.fb_pending_flush] ;
@@ -43,5 +43,5 @@
 		}
 	} +
-	
+
 	?set_rgb_color {
 		[fnc.fb_pending_flush] ;
@@ -50,5 +50,5 @@
 		}
 	} +
-	
+
 	?cursor_visibility {
 		[fnc.fb_pending_flush] ;
@@ -57,9 +57,9 @@
 		}
 	} +
-	
+
 	?kcon_enable {
 		!sys_console.sys_debug_enable_console
 	} +
-	
+
 	?get_event +
 	?get_size +
Index: contrib/arch/uspace/srv/devmap/devmap.adl
===================================================================
--- contrib/arch/uspace/srv/devmap/devmap.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/devmap/devmap.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,23 +2,23 @@
 		/* Establish connection (iface is DEVMAP_DRIVER) */
 		sysarg_t ipc_m_connect_me_to(in sysarg_t iface);
-		
+
 		/* Register as a new driver */
 		sysarg_t driver_register(in_copy string name);
-		
+
 		/* Unregister all devices and the driver itself */
 		sysarg_t driver_unregister(void);
-		
+
 		/* Register new device and return handle */
 		sysarg_t device_register(in_copy string name, out sysarg_t handle);
-		
+
 		/* Unregister device */
 		sysarg_t device_unregister(in sysarg_t handle);
-		
+
 		/* Resolve device name to handle */
 		sysarg_t device_get_handle(in sysarg_t flags, in_copy string name);
-		
+
 		/* Get device name for a given handle */
 		sysarg_t device_get_name(in sysarg_t handle);
-		
+
 		/* Close connection */
 		sysarg_t ipc_m_phone_hungup(void);
@@ -30,28 +30,28 @@
 		/* Establish connection (iface is DEVMAP_CLIENT) or forward to device (iface is DEVMAP_CONNECT_TO_DEVICE) */
 		sysarg_t ipc_m_connect_me_to(in sysarg_t iface, in sysarg_t handle);
-		
+
 		/* Resolve device name to handle */
 		sysarg_t device_get_handle(in sysarg_t flags, in_copy string name);
-		
+
 		/* Get device name for a given handle */
 		sysarg_t device_get_name(in sysarg_t handle);
-		
+
 		/* Clone NULL device */
 		sysarg_t device_null_create(out sysarg_t index);
-		
+
 		/* Destroy NULL device */
 		sysarg_t device_null_destroy(in sysarg_t index);
-		
+
 		/* Get number of devices */
 		sysarg_t device_get_count(out sysarg_t count);
-		
+
 		/* Get an array of (device_name, handle) pairs */
 		sysarg_t device_get_devices(out_copy stream data);
-		
+
 		/* Close connection */
 		sysarg_t ipc_m_phone_hungup(void);
 	protocol:
 		[devmap_client.bp]
-	
+
 };
 
Index: contrib/arch/uspace/srv/devmap/devmap_client.bp
===================================================================
--- contrib/arch/uspace/srv/devmap/devmap_client.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/devmap/devmap_client.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -10,10 +10,10 @@
 			?ipc_m_data_write /* device name */
 		} +
-		
+
 		?device_get_name +
 		?device_null_create +
 		?device_null_destroy +
 		?device_get_count +
-		
+
 		?device_get_devices {
 			?ipc_m_data_read /* buffer */
Index: contrib/arch/uspace/srv/devmap/devmap_driver.bp
===================================================================
--- contrib/arch/uspace/srv/devmap/devmap_driver.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/devmap/devmap_driver.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -14,9 +14,9 @@
 		}
 	} +
-	
+
 	?device_get_handle {
 		?ipc_m_data_write /* device name */
 	} +
-	
+
 	?device_get_name +
 	?device_unregister +
Index: contrib/arch/uspace/srv/fb/fb.adl
===================================================================
--- contrib/arch/uspace/srv/fb/fb.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/fb/fb.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,95 +2,95 @@
 		/* Get screen resolution */
 		sysarg_t get_resolution(out sysarg_t width, out sysarg_t height);
-		
+
 		/* Yield screen */
 		sysarg_t screen_yield(void);
-		
+
 		/* Reclaim screen */
 		sysarg_t screen_reclaim(void);
-		
+
 		/* Set mouse cursor position on screen */
 		sysarg_t pointer_move(in sysarg_t x, in sysarg_t y);
-		
+
 		/* Create new viewport */
 		sysarg_t viewport_create(in sysarg_t origin, in sysarg_t dimension);
-		
+
 		/* Get viewport size in character cells */
 		sysarg_t get_csize(out sysarg_t width, out sysarg_t height);
-		
+
 		/* Clear viewport character buffer */
 		sysarg_t clear(void);
-		
+
 		/* Scroll viewport character buffer */
 		sysarg_t scroll(in sysarg_t lines);
-		
+
 		/* Set active viewport */
 		sysarg_t viewport_switch(in sysarg_t index);
-		
+
 		/* Delete viewport */
 		sysarg_t viewport_delete(in sysarg_t index);
-		
+
 		/* Get color capabilities of the screen */
 		sysarg_t get_color_cap(void);
-		
+
 		/* Set abstract text style */
 		sysarg_t set_style(in sysarg_t style);
-		
+
 		/* Set EGA-based text color */
 		sysarg_t set_color(in sysarg_t fg_color, in sysarg_t bg_color, in sysarg_t atrr);
-		
+
 		/* Set RGB-based text color */
 		sysarg_t set_rgb_color(in sysarg_t fg_color, in sysarg_t bg_color);
-		
+
 		/* Put a character to a given position in viewport character buffer */
 		sysarg_t putchar(in sysarg_t char, in sysarg_t col, in sysarg_t row);
-		
+
 		/* Set character cursor visibility in viewport */
 		sysarg_t cursor_visibility(in sysarg_t visible);
-		
+
 		/* Set character cursor position in viewport */
 		sysarg_t cursor_goto(in sysarg_t col, in sysarg_t row);
-		
+
 		/* Prepare memory sharing of bitmaps */
 		sysarg_t prepare_shm(in sysarg_t as_area_base);
-		
+
 		/* Share bitmap or text data */
 		sysarg_t ipc_m_share_out(in sysarg_t as_area_base, in sysarg_t as_area_size, out sysarg_t dst_as_area);
-		
+
 		/* Drop memory sharing */
 		sysarg_t drop_shm(void);
-		
+
 		/* Draw PPM data from shared memory to viewport */
 		sysarg_t draw_ppm(in sysarg_t x, in sysarg_t y);
-		
+
 		/* Put characters from shared memory to viewport */
 		sysarg_t draw_text_data(in sysarg_t x, in sysarg_t y, in sysarg_t width, in sysarg_t height);
-		
+
 		/* Convert PPM data from shared memory to pixmap */
 		sysarg_t shm2pixmap(void);
-		
+
 		/* Save viewport contents to a pixmap */
 		sysarg_t vp2pixmap(in sysarg_t vp_index);
-		
+
 		/* Draw pixmap to viewport */
 		sysarg_t vp_draw_pixmap(in sysarg_t vp_index, in sysarg_t pm_index);
-		
+
 		/* Discard pixmap */
 		sysarg_t drop_pixmap(in sysarg_t pm_index);
-		
+
 		/* Create new (empty) animation for a viewport */
 		sysarg_t anim_create(in sysarg_t vp_index);
-		
+
 		/* Append a pixmap to an animation */
 		sysarg_t anim_addpixmap(in sysarg_t anim_index, in sysarg_t pm_index);
-		
+
 		/* Change a viewport associated with an animation */
 		sysarg_t anim_chgvp(in sysarg_t anim_index, in sysarg_t vp_index);
-		
+
 		/* Start animation playback */
 		sysarg_t anim_start(in sysarg_t anim_index);
-		
+
 		/* Stop animation playback */
 		sysarg_t anim_stop(in sysarg_t anim_index);
-		
+
 		/* Delete animation */
 		sysarg_t anim_drop(in sysarg_t anim_index);
Index: contrib/arch/uspace/srv/fs/devfs/devfs.bp
===================================================================
--- contrib/arch/uspace/srv/fs/devfs/devfs.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/fs/devfs/devfs.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -5,5 +5,5 @@
 			?ipc_m_data_write /* mount options */
 		} +
-		
+
 		?lookup {
 			tentative {
@@ -14,5 +14,5 @@
 			}
 		} +
-		
+
 		?open_node {
 			tentative {
@@ -20,5 +20,5 @@
 			}
 		} +
-		
+
 		?read {
 			tentative {
@@ -34,5 +34,5 @@
 			}
 		} +
-		
+
 		?write {
 			tentative {
@@ -44,13 +44,13 @@
 			}
 		} +
-		
+
 		?stat {
 			?ipc_m_data_read /* struct data */
 		} +
-		
+
 		?close {
 			!device.ipc_m_phone_hungup
 		} +
-		
+
 		?mount +
 		?truncate +
Index: contrib/arch/uspace/srv/fs/fat/fat.bp
===================================================================
--- contrib/arch/uspace/srv/fs/fat/fat.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/fs/fat/fat.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -10,17 +10,17 @@
 			}
 		} +
-		
+
 		?mount {
 			[/uspace/lib/libfs/fnc.libfs_mount]
 		} +
-		
+
 		?lookup {
 			[/uspace/lib/libfs/fnc.libfs_lookup]
 		} +
-		
+
 		?open_node {
 			[/uspace/lib/libfs/fnc.libfs_open_node]
 		} +
-		
+
 		?read {
 			tentative {
@@ -28,5 +28,5 @@
 			}
 		} +
-		
+
 		?write {
 			tentative {
@@ -34,9 +34,9 @@
 			}
 		} +
-		
+
 		?stat {
 			[/uspace/lib/libfs/fnc.libfs_stat]
 		} +
-		
+
 		?truncate +
 		?close +
Index: contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp
===================================================================
--- contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -8,17 +8,17 @@
 			}
 		} +
-		
+
 		?mount {
 			[/uspace/lib/libfs/fnc.libfs_mount]
 		} +
-		
+
 		?lookup {
 			[/uspace/lib/libfs/fnc.libfs_lookup]
 		} +
-		
+
 		?open_node {
 			[/uspace/lib/libfs/fnc.libfs_open_node]
 		} +
-		
+
 		?read {
 			tentative {
@@ -26,5 +26,5 @@
 			}
 		} +
-		
+
 		?write {
 			tentative {
@@ -32,9 +32,9 @@
 			}
 		} +
-		
+
 		?stat {
 			[/uspace/lib/libfs/fnc.libfs_stat]
 		} +
-		
+
 		?truncate +
 		?close +
Index: contrib/arch/uspace/srv/kbd/kbd.adl
===================================================================
--- contrib/arch/uspace/srv/kbd/kbd.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/kbd/kbd.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,8 +2,8 @@
 		/* Callback connection */
 		sysarg_t ipc_m_connect_to_me(void);
-		
+
 		/* Yield hardware */
 		sysarg_t yield(void);
-		
+
 		/* Reclaim hardware */
 		sysarg_t reclaim(void);
Index: contrib/arch/uspace/srv/loader/loader.adl
===================================================================
--- contrib/arch/uspace/srv/loader/loader.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/loader/loader.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,17 +2,17 @@
 		/* Set task pathname */
 		sysarg_t set_pathname(in_copy string pathname);
-		
+
 		/* Set task arguments */
 		sysarg_t set_args(in_copy stream args);
-		
+
 		/* Set task initial files */
 		sysarg_t set_files(in_copy stream files);
-		
+
 		/* Get task ID */
 		sysarg_t get_taskid(out_copy stream id);
-		
+
 		/* Load binary */
 		sysarg_t load(void);
-		
+
 		/* Run binary */
 		sysarg_t run(void);
Index: contrib/arch/uspace/srv/loader/loader.bp
===================================================================
--- contrib/arch/uspace/srv/loader/loader.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/loader/loader.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -3,17 +3,17 @@
 		?ipc_m_data_read /* task ID */
 	} +
-	
+
 	?set_pathname {
 		?ipc_m_data_write /* pathname */
 	} +
-	
+
 	?set_args {
 		?ipc_m_data_write /* arguments */
 	} +
-	
+
 	?set_files {
 		?ipc_m_data_write /* files */
 	} +
-	
+
 	?load
 )* ;
Index: contrib/arch/uspace/srv/ns/ns.adl
===================================================================
--- contrib/arch/uspace/srv/ns/ns.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/ns/ns.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,23 +2,23 @@
 		/* Register a clonable service or a generic service */
 		sysarg_t ipc_m_connect_to_me(in sysarg_t service);
-		
+
 		/* Connect to a clonable service or a generic service */
 		sysarg_t ipc_m_connect_me_to(in sysarg_t service, in sysarg_t arg2, in sysarg_t arg3, in sysarg_t flags);
-		
+
 		/* Share real-time clock page or kio page */
 		sysarg_t ipc_m_share_in(in sysarg_t as_area_base, in sysarg_t as_area_size, in sysarg_t service);
-		
+
 		/* For IPC testing purposes */
 		sysarg_t ping(void);
-		
+
 		/* Wait for task exit and get exit status and return value */
 		sysarg_t task_wait(in sysarg_t id_lower, in sysarg_t id_upper, out sysarg_t status, out sysarg_t retval);
-		
+
 		/* Introduce a new loader task id in such a way it cannot be spoofed */
 		sysarg_t id_intro(in sysarg_t id_lower, in sysarg_t id_upper);
-		
+
 		/* Set task return value */
 		sysarg_t retval(in sysarg_t retval);
-		
+
 		/* Implicit connection close */
 		sysarg_t ipc_m_phone_hungup(void);
Index: contrib/arch/uspace/srv/ns/ns.bp
===================================================================
--- contrib/arch/uspace/srv/ns/ns.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/ns/ns.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -8,5 +8,5 @@
 		}
 	} +
-	
+
 	?ipc_m_connect_me_to {
 		tentative {
@@ -16,5 +16,5 @@
 		}
 	} +
-	
+
 	?ipc_m_share_in +
 	?ping +
Index: contrib/arch/uspace/srv/ns/service.adl
===================================================================
--- contrib/arch/uspace/srv/ns/service.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/ns/service.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -3,5 +3,5 @@
 		   (this call is forwarded from Naming Service or Device Mapper) */
 		sysarg_t ipc_m_connect_me_to(void);
-		
+
 		/* Close connection */
 		sysarg_t ipc_m_phone_hungup(void);
Index: contrib/arch/uspace/srv/vfs/vfs.adl
===================================================================
--- contrib/arch/uspace/srv/vfs/vfs.adl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/vfs/vfs.adl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -2,47 +2,47 @@
 		/* Register a filesystem driver */
 		sysarg_t register(in_copy string name);
-		
+
 		/* Mount filesystem */
 		sysarg_t mount(in sysarg_t device, in sysarg_t flags, in sysarg_t instance, in_copy string point, in_copy string opts, in_copy string fs);
-		
+
 		/* Open file */
 		sysarg_t open(in sysarg_t lflag, in sysarg_t oflag, in sysarg_t mode, in_copy string path, out sysarg_t fd);
-		
+
 		/* Open file using node */
 		sysarg_t open_node(in sysarg_t fs_handle, in sysarg_t dev_handle, in sysarg_t index, in sysarg_t oflag, out sysarg_t fd);
-		
+
 		/* Read data from file */
 		sysarg_t read(in sysarg_t fd, out_copy stream data);
-		
+
 		/* Write data to file */
 		sysarg_t write(in sysarg_t fd, in_copy stream data);
-		
+
 		/* Seek in file */
 		sysarg_t seek(in sysarg_t fd, in sysarg_t offset, in sysarg_t whence);
-		
+
 		/* Truncate file */
 		sysarg_t truncate(in sysarg_t fd, in sysarg_t size);
-		
+
 		/* Get file metadata */
 		sysarg_t fstat(in sysarg_t fd, out_copy stream stat);
-		
+
 		/* Get directory entry metadata */
 		sysarg_t stat(in_copy string path, out_copy stream stat);
-		
+
 		/* Create directory */
 		sysarg_t mkdir(in sysarg_t mode, in_copy string path);
-		
+
 		/* Delete directory entry */
 		sysarg_t unlink(in sysarg_t lflag, in_copy string path);
-		
+
 		/* Rename directory entry */
 		sysarg_t rename(in_copy string old, in_copy string new);
-		
+
 		/* Flush file buffers */
 		sysarg_t sync(in sysarg_t fd);
-		
+
 		/* In-protocol status value */
 		sysarg_t ipc_m_ping(void);
-		
+
 		/* Close connection */
 		sysarg_t ipc_m_phone_hungup(void);
@@ -54,29 +54,29 @@
 		/* Notify filesystem that it was mounted */
 		sysarg_t mounted(in sysarg_t dev_handle, in_copy string opts);
-		
+
 		/* Mount filesystem */
 		sysarg_t mount(in sysarg_t device, in sysarg_t flags, in sysarg_t instance, in_copy string point, in_copy string opts, ...);
-		
+
 		/* Open file by node */
 		sysarg_t open_node(in sysarg_t lflag, in sysarg_t oflag, in sysarg_t mode, ...);
-		
+
 		/* Lookup file */
 		sysarg_t lookup(in sysarg_t lflag, in sysarg_t oflag, in sysarg_t mode, ...);
-		
+
 		/* Read data from file */
 		sysarg_t read(in sysarg_t dev_handle, in sysarg_t fs_index, in sysarg_t offset, out_copy stream data);
-		
+
 		/* Write data to file */
 		sysarg_t write(in sysarg_t dev_handle, in sysarg_t fs_index, in sysarg_t offset, in_copy stream data);
-		
+
 		/* Truncate file */
 		sysarg_t truncate(in sysarg_t dev_handle, in sysarg_t fs_index, in sysarg_t size);
-		
+
 		/* Get directory entry metadata */
 		sysarg_t stat(in sysarg_t dev_handle, in sysarg_t fs_index, out_copy stream stat);
-		
+
 		/* Flush file buffers */
 		sysarg_t sync(in sysarg_t dev_handle, in sysarg_t fs_index);
-		
+
 		/* Notify on file close */
 		sysarg_t close(in sysarg_t dev_handle, in sysarg_t fs_index);
@@ -103,36 +103,36 @@
 	inst fat fat;
 	inst devfs devfs;
-	
+
 	bind io_dispatcher:tmpfs to tmpfs:tmpfs;
 	bind io_dispatcher:fat to fat:fat;
 	bind io_dispatcher:devfs to devfs:devfs;
-	
+
 	bind tmpfs:vfs to io_dispatcher:vfs;
 	bind fat:vfs to io_dispatcher:vfs;
 	bind devfs:vfs to io_dispatcher:vfs;
-	
+
 	bind tmpfs:tmpfs_nested to tmpfs:tmpfs;
 	bind tmpfs:fat_nested to fat:fat;
 	bind tmpfs:devfs_nested to devfs:devfs;
-	
+
 	bind fat:tmpfs_nested to tmpfs:tmpfs;
 	bind fat:fat_nested to fat:fat;
 	bind fat:devfs_nested to devfs:devfs;
-	
+
 	delegate vfs to io_dispatcher:vfs;
-	
+
 	[/uspace/lib/libc/subsume%io_dispatcher]
 	[/uspace/lib/libc/subsume%tmpfs]
 	[/uspace/lib/libc/subsume%fat]
 	[/uspace/lib/libc/subsume%devfs]
-	
+
 	subsume io_dispatcher:ns to ns;
 	subsume tmpfs:ns to ns;
 	subsume fat:ns to ns;
 	subsume devfs:ns to ns;
-	
+
 	subsume tmpfs:rd to rd;
 	subsume fat:rd to rd;
-	
+
 	subsume devfs:devmap_client to devmap_client;
 	subsume devfs:device to device;
Index: contrib/arch/uspace/srv/vfs/vfs.bp
===================================================================
--- contrib/arch/uspace/srv/vfs/vfs.bp	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/arch/uspace/srv/vfs/vfs.bp	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -9,5 +9,5 @@
 		}
 	} +
-	
+
 	?mount {
 		?ipc_m_data_write /* mount point */ ;
@@ -51,5 +51,5 @@
 		}
 	} +
-	
+
 	?open {
 		tentative {
@@ -67,5 +67,5 @@
 		}
 	} +
-	
+
 	?open_node {
 		alternative (fs; tmpfs; fat; devfs) {
@@ -78,5 +78,5 @@
 		}
 	} +
-	
+
 	?close {
 		tentative {
@@ -88,5 +88,5 @@
 		}
 	} +
-	
+
 	?read {
 		tentative {
@@ -102,5 +102,5 @@
 		}
 	} +
-	
+
 	?write {
 		tentative {
@@ -116,5 +116,5 @@
 		}
 	} +
-	
+
 	?truncate {
 		tentative {
@@ -126,5 +126,5 @@
 		}
 	} +
-	
+
 	?fstat {
 		tentative {
@@ -140,5 +140,5 @@
 		}
 	} +
-	
+
 	?stat {
 		?ipc_m_data_write /* path */ ;
@@ -156,5 +156,5 @@
 		}
 	} +
-	
+
 	?mkdir {
 		?ipc_m_data_write /* path */ ;
@@ -165,5 +165,5 @@
 		}
 	} +
-	
+
 	?unlink {
 		?ipc_m_data_write /* path */ ;
@@ -174,5 +174,5 @@
 		}
 	} +
-	
+
 	?rename {
 		?ipc_m_data_write /* old path */ ;
@@ -198,5 +198,5 @@
 		}
 	} +
-	
+
 	?sync {
 		tentative {
@@ -206,7 +206,7 @@
 		}
 	} +
-	
+
 	?seek
-	
+
 )* ;
 ?ipc_m_phone_hungup
Index: contrib/highlight/adl.syntax
===================================================================
--- contrib/highlight/adl.syntax	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/highlight/adl.syntax	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -6,9 +6,9 @@
 	keyword whole frame yellow
 	keyword whole architecture yellow
-	
+
 	keyword whole system yellow
 	keyword whole extends yellow
 	keyword whole version yellow
-	
+
 	keyword whole inst yellow
 	keyword whole bind yellow
@@ -16,15 +16,15 @@
 	keyword whole subsume yellow
 	keyword whole delegate yellow
-	
+
 	keyword whole sysarg_t yellow
 	keyword whole string yellow
 	keyword whole stream yellow
 	keyword whole void yellow
-	
+
 	keyword whole in yellow
 	keyword whole in_copy yellow
 	keyword whole out yellow
 	keyword whole out_copy yellow
-	
+
 	keyword whole protocol yellow
 	keyword whole initialization yellow
@@ -32,19 +32,19 @@
 	keyword whole provides yellow
 	keyword whole requires yellow
-	
+
 	keyword /\* brown
 	keyword \*/ brown
 	keyword // brown
-	
+
 	keyword { brightcyan
 	keyword } brightcyan
-	
+
 	keyword ( brightcyan
 	keyword ) brightcyan
-	
+
 	keyword , brightcyan
 	keyword : brightcyan
 	keyword ; brightmagenta
-	
+
 	keyword [ brightblue black
 	keyword ] brightblue black
Index: contrib/highlight/bp.syntax
===================================================================
--- contrib/highlight/bp.syntax	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/highlight/bp.syntax	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -6,25 +6,25 @@
 	keyword whole tentative yellow
 	keyword whole alternative yellow
-	
+
 	keyword /\* brown
 	keyword \*/ brown
 	keyword # brown
-	
+
 	keyword ! brightred
 	keyword ? brightgreen
-	
+
 	keyword ( brightcyan
 	keyword ) brightcyan
-	
+
 	keyword { brightcyan
 	keyword } brightcyan
-	
+
 	keyword \+ brightmagenta
 	keyword ; brightmagenta
 	keyword \* brightmagenta
 	keyword | brightmagenta
-	
+
 	keyword \. brightcyan
-	
+
 	keyword [ brightblue black
 	keyword ] brightblue black
Index: contrib/tools/font/bdf2c.pl
===================================================================
--- contrib/tools/font/bdf2c.pl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/tools/font/bdf2c.pl	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -53,5 +53,5 @@
 	/^FONTBOUNDINGBOX\s/ and do {
 		($skip, $width, $height, $offset_x, $offset_y) = (split);
-		
+
 		die("Font width is not 8px\n") if ($width != 8);
 		die("Font height is not 16px\n") if ($height != 16);
@@ -70,12 +70,12 @@
 		my @glyph = ();
 		my $y;
-		
+
 		# Add empty lines at top
 		my $empties = $height + $offset_y - $goffset_y - $gheight;
-		
+
 		for ($y = 0; $y < $empties; $y++) {
 			$glyph[$y] = 0;
 		}
-		
+
 		# Scan the hex bitmap
 		for ($y = $empties; $y < $empties + $gheight; $y++) {
@@ -83,5 +83,5 @@
 			$glyph[$y] = hex(substr($_, 0, 2)) >> $goffset_x;
 		}
-		
+
 		# Add empty lines at bottom
 		my $fill = $height - $gheight - $empties;
@@ -89,5 +89,5 @@
 			$glyph[$y] = 0;
 		}
-		
+
 		if ($index != 0) {
 			$glyphs[$index] = (\@glyph);
@@ -125,12 +125,12 @@
 				print "\t\treturn (ch - " . ($start - $start_pos) . ");\n";
 			}
-			
+
 			print "\t\n";
 		}
-		
+
 		$start = $index;
 		$start_pos = $pos;
 	}
-	
+
 	$pos++;
 	$prev = $index;
@@ -145,5 +145,5 @@
 for $index (@chars) {
 	print "\n\t{";
-	
+
 	my $y;
 	for ($y = 0; $y < $height; $y++) {
@@ -151,5 +151,5 @@
 		printf "0x%.2x", $glyphs[$index]->[$y];
 	}
-	
+
 	print "},";
 }
