Index: uspace/lib/block/block.h
===================================================================
--- uspace/lib/block/block.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/block/block.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -85,5 +85,5 @@
 	/** Link for placing the block into the free block list. */
 	link_t free_link;
-	/** Link for placing the block into the block hash table. */ 
+	/** Link for placing the block into the block hash table. */
 	ht_link_t hash_link;
 	/** Buffer with the block data. */
Index: uspace/lib/c/arch/ia32/include/libarch/syscall.h
===================================================================
--- uspace/lib/c/arch/ia32/include/libarch/syscall.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/arch/ia32/include/libarch/syscall.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -48,5 +48,5 @@
 #define __syscall6  __syscall_slow
 
-extern sysarg_t (* __syscall_fast_func)(const sysarg_t, const sysarg_t,
+extern sysarg_t (*__syscall_fast_func)(const sysarg_t, const sysarg_t,
     const sysarg_t, const sysarg_t, const sysarg_t, const sysarg_t,
     const syscall_t);
Index: uspace/lib/c/include/adt/hash_table.h
===================================================================
--- uspace/lib/c/include/adt/hash_table.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/adt/hash_table.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -84,6 +84,6 @@
 	member_to_inst((item), type, member)
 
-extern bool hash_table_create(hash_table_t *, size_t, size_t, 
-	hash_table_ops_t *);
+extern bool hash_table_create(hash_table_t *, size_t, size_t,
+    hash_table_ops_t *);
 extern void hash_table_destroy(hash_table_t *);
 
@@ -98,6 +98,6 @@
 extern size_t hash_table_remove(hash_table_t *, void *);
 extern void hash_table_remove_item(hash_table_t *, ht_link_t *);
-extern void hash_table_apply(hash_table_t *, bool (*)(ht_link_t *, void *), 
-	void *);
+extern void hash_table_apply(hash_table_t *, bool (*)(ht_link_t *, void *),
+    void *);
 
 
Index: uspace/lib/c/include/async.h
===================================================================
--- uspace/lib/c/include/async.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/async.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -34,5 +34,5 @@
 
 #if ((defined(LIBC_IPC_H_)) && (!defined(LIBC_ASYNC_C_)))
-	#error Do not intermix low-level IPC interface and async framework
+#error Do not intermix low-level IPC interface and async framework
 #endif
 
Index: uspace/lib/c/include/gsort.h
===================================================================
--- uspace/lib/c/include/gsort.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/gsort.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -39,5 +39,5 @@
 #include <stdbool.h>
 
-typedef int (* sort_cmp_t)(void *, void *, void *);
+typedef int (*sort_cmp_t)(void *, void *, void *);
 
 extern bool gsort(void *, size_t, size_t, sort_cmp_t, void *);
Index: uspace/lib/c/include/ipc/ipc.h
===================================================================
--- uspace/lib/c/include/ipc/ipc.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/ipc/ipc.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -34,5 +34,5 @@
 
 #if ((defined(LIBC_ASYNC_H_)) && (!defined(LIBC_ASYNC_C_)))
-	#error Do not intermix low-level IPC interface and async framework
+#error Do not intermix low-level IPC interface and async framework
 #endif
 
Index: uspace/lib/c/include/ipc/logger.h
===================================================================
--- uspace/lib/c/include/ipc/logger.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/ipc/logger.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -54,5 +54,5 @@
 	 * Returns: error code
 	 * Followed by: vfs_pass_handle() request.
-	 */ 
+	 */
 	LOGGER_CONTROL_SET_ROOT
 } logger_control_request_t;
Index: uspace/lib/c/include/rtld/rtld_debug.h
===================================================================
--- uspace/lib/c/include/rtld/rtld_debug.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/rtld/rtld_debug.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -42,7 +42,7 @@
 
 #ifdef RTLD_DEBUG
-	#define DPRINTF(format, ...) printf(format, ##__VA_ARGS__)
+#define DPRINTF(format, ...) printf(format, ##__VA_ARGS__)
 #else
-	#define DPRINTF(format, ...) if (0) printf(format, ##__VA_ARGS__)
+#define DPRINTF(format, ...) if (0) printf(format, ##__VA_ARGS__)
 #endif
 
Index: uspace/lib/c/include/syscall.h
===================================================================
--- uspace/lib/c/include/syscall.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/syscall.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -41,5 +41,5 @@
 
 #ifndef LIBARCH_SYSCALL_GENERIC
-	#error You cannot include this file directly
+#error You cannot include this file directly
 #endif
 
Index: uspace/lib/c/include/time.h
===================================================================
--- uspace/lib/c/include/time.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/time.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -31,5 +31,5 @@
  */
 /** @file
- */ 
+ */
 
 #ifndef LIBC_TIME_H_
Index: uspace/lib/c/include/udebug.h
===================================================================
--- uspace/lib/c/include/udebug.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/udebug.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -46,5 +46,5 @@
 extern errno_t udebug_end(async_sess_t *);
 extern errno_t udebug_set_evmask(async_sess_t *, udebug_evmask_t);
-extern errno_t udebug_thread_read(async_sess_t *, void *, size_t , size_t *,
+extern errno_t udebug_thread_read(async_sess_t *, void *, size_t, size_t *,
     size_t *);
 extern errno_t udebug_name_read(async_sess_t *, void *, size_t, size_t *,
Index: uspace/lib/c/include/vfs/inbox.h
===================================================================
--- uspace/lib/c/include/vfs/inbox.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/c/include/vfs/inbox.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -29,5 +29,5 @@
 /** @addtogroup libc 
  * @{
- */ 
+ */
 
 /**
Index: uspace/lib/draw/surface.h
===================================================================
--- uspace/lib/draw/surface.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/draw/surface.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -60,6 +60,6 @@
 extern void surface_get_damaged_region(surface_t *, surface_coord_t *, surface_coord_t *,
     surface_coord_t *, surface_coord_t *);
-extern void surface_add_damaged_region(surface_t *, surface_coord_t , surface_coord_t ,
-    surface_coord_t , surface_coord_t );
+extern void surface_add_damaged_region(surface_t *, surface_coord_t, surface_coord_t,
+    surface_coord_t, surface_coord_t);
 extern void surface_reset_damaged_region(surface_t *);
 
Index: uspace/lib/drv/include/ahci_iface.h
===================================================================
--- uspace/lib/drv/include/ahci_iface.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/drv/include/ahci_iface.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -41,5 +41,5 @@
 #include <async.h>
 
-extern async_sess_t* ahci_get_sess(devman_handle_t, char **);
+extern async_sess_t *ahci_get_sess(devman_handle_t, char **);
 
 extern errno_t ahci_get_sata_device_name(async_sess_t *, size_t, char *);
Index: uspace/lib/drv/include/audio_pcm_iface.h
===================================================================
--- uspace/lib/drv/include/audio_pcm_iface.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/drv/include/audio_pcm_iface.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -120,5 +120,5 @@
 	errno_t (*release_buffer)(ddf_fun_t *);
 	errno_t (*set_event_session)(ddf_fun_t *, async_sess_t *);
-	async_sess_t * (*get_event_session)(ddf_fun_t *);
+	async_sess_t *(*get_event_session)(ddf_fun_t *);
 	errno_t (*start_playback)(ddf_fun_t *, unsigned,
 	    unsigned, unsigned, pcm_sample_format_t);
Index: uspace/lib/drv/include/ops/nic.h
===================================================================
--- uspace/lib/drv/include/ops/nic.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/drv/include/ops/nic.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -66,5 +66,5 @@
 	errno_t (*autoneg_restart)(ddf_fun_t *);
 	errno_t (*get_pause)(ddf_fun_t *, nic_result_t *, nic_result_t *,
-		uint16_t *);
+	    uint16_t *);
 	errno_t (*set_pause)(ddf_fun_t *, int, int, uint16_t);
 	
Index: uspace/lib/drv/include/ops/pio_window.h
===================================================================
--- uspace/lib/drv/include/ops/pio_window.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/drv/include/ops/pio_window.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -40,5 +40,5 @@
 
 typedef struct {
-	pio_window_t *(* get_pio_window)(ddf_fun_t *);
+	pio_window_t *(*get_pio_window)(ddf_fun_t *);
 } pio_window_ops_t;
 
Index: uspace/lib/drv/include/usbhid_iface.h
===================================================================
--- uspace/lib/drv/include/usbhid_iface.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/drv/include/usbhid_iface.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -81,5 +81,5 @@
 	 * @return Error code.
 	 */
-	errno_t (*get_report_descriptor)(ddf_fun_t *fun, uint8_t *desc, 
+	errno_t (*get_report_descriptor)(ddf_fun_t *fun, uint8_t *desc,
 	    size_t size, size_t *act_size);
 } usbhid_iface_t;
Index: uspace/lib/ext4/include/ext4/inode.h
===================================================================
--- uspace/lib/ext4/include/ext4/inode.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/ext4/include/ext4/inode.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -73,5 +73,5 @@
 extern uint32_t ext4_inode_get_indirect_block(ext4_inode_t *, uint32_t);
 extern void ext4_inode_set_indirect_block(ext4_inode_t *, uint32_t, uint32_t);
-extern ext4_extent_header_t * ext4_inode_get_extent_header(ext4_inode_t *);
+extern ext4_extent_header_t *ext4_inode_get_extent_header(ext4_inode_t *);
 extern bool ext4_inode_is_type(ext4_superblock_t *, ext4_inode_t *, uint32_t);
 extern bool ext4_inode_has_flag(ext4_inode_t *, uint32_t);
Index: uspace/lib/ext4/include/ext4/superblock.h
===================================================================
--- uspace/lib/ext4/include/ext4/superblock.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/ext4/include/ext4/superblock.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -113,14 +113,14 @@
     uint32_t);
 
-extern const uint8_t * ext4_superblock_get_uuid(ext4_superblock_t *);
+extern const uint8_t *ext4_superblock_get_uuid(ext4_superblock_t *);
 extern void ext4_superblock_set_uuid(ext4_superblock_t *, const uint8_t *);
-extern const char * ext4_superblock_get_volume_name(ext4_superblock_t *);
+extern const char *ext4_superblock_get_volume_name(ext4_superblock_t *);
 extern void ext4_superblock_set_volume_name(ext4_superblock_t *, const char *);
-extern const char * ext4_superblock_get_last_mounted(ext4_superblock_t *);
+extern const char *ext4_superblock_get_last_mounted(ext4_superblock_t *);
 extern void ext4_superblock_set_last_mounted(ext4_superblock_t *, const char *);
 
 extern uint32_t ext4_superblock_get_last_orphan(ext4_superblock_t *);
 extern void ext4_superblock_set_last_orphan(ext4_superblock_t *, uint32_t);
-extern const uint32_t * ext4_superblock_get_hash_seed(ext4_superblock_t *);
+extern const uint32_t *ext4_superblock_get_hash_seed(ext4_superblock_t *);
 extern void ext4_superblock_set_hash_seed(ext4_superblock_t *,
     const uint32_t *);
Index: uspace/lib/fs/libfs.h
===================================================================
--- uspace/lib/fs/libfs.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/fs/libfs.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -43,14 +43,14 @@
 
 typedef struct {
-	errno_t (* fsprobe)(service_id_t, vfs_fs_probe_info_t *);
-	errno_t (* mounted)(service_id_t, const char *, fs_index_t *, aoff64_t *);
-	errno_t (* unmounted)(service_id_t);
-	errno_t (* read)(service_id_t, fs_index_t, aoff64_t, size_t *);
-	errno_t (* write)(service_id_t, fs_index_t, aoff64_t, size_t *,
+	errno_t (*fsprobe)(service_id_t, vfs_fs_probe_info_t *);
+	errno_t (*mounted)(service_id_t, const char *, fs_index_t *, aoff64_t *);
+	errno_t (*unmounted)(service_id_t);
+	errno_t (*read)(service_id_t, fs_index_t, aoff64_t, size_t *);
+	errno_t (*write)(service_id_t, fs_index_t, aoff64_t, size_t *,
 	    aoff64_t *);
-	errno_t (* truncate)(service_id_t, fs_index_t, aoff64_t);
-	errno_t (* close)(service_id_t, fs_index_t);
-	errno_t (* destroy)(service_id_t, fs_index_t);
-	errno_t (* sync)(service_id_t, fs_index_t);
+	errno_t (*truncate)(service_id_t, fs_index_t, aoff64_t);
+	errno_t (*close)(service_id_t, fs_index_t);
+	errno_t (*destroy)(service_id_t, fs_index_t);
+	errno_t (*sync)(service_id_t, fs_index_t);
 } vfs_out_ops_t;
 
@@ -65,27 +65,27 @@
 	 * argument holds the output argument.
 	 */
-	errno_t (* root_get)(fs_node_t **, service_id_t);
-	errno_t (* match)(fs_node_t **, fs_node_t *, const char *);
-	errno_t (* node_get)(fs_node_t **, service_id_t, fs_index_t);
-	errno_t (* node_open)(fs_node_t *);
-	errno_t (* node_put)(fs_node_t *);
-	errno_t (* create)(fs_node_t **, service_id_t, int);
-	errno_t (* destroy)(fs_node_t *);
-	errno_t (* link)(fs_node_t *, fs_node_t *, const char *);
-	errno_t (* unlink)(fs_node_t *, fs_node_t *, const char *);
-	errno_t (* has_children)(bool *, fs_node_t *);
+	errno_t (*root_get)(fs_node_t **, service_id_t);
+	errno_t (*match)(fs_node_t **, fs_node_t *, const char *);
+	errno_t (*node_get)(fs_node_t **, service_id_t, fs_index_t);
+	errno_t (*node_open)(fs_node_t *);
+	errno_t (*node_put)(fs_node_t *);
+	errno_t (*create)(fs_node_t **, service_id_t, int);
+	errno_t (*destroy)(fs_node_t *);
+	errno_t (*link)(fs_node_t *, fs_node_t *, const char *);
+	errno_t (*unlink)(fs_node_t *, fs_node_t *, const char *);
+	errno_t (*has_children)(bool *, fs_node_t *);
 	/*
 	 * The second set of methods are usually mere getters that do not
 	 * return an integer error code.
 	 */
-	fs_index_t (* index_get)(fs_node_t *);
-	aoff64_t (* size_get)(fs_node_t *);
-	unsigned int (* lnkcnt_get)(fs_node_t *);
-	bool (* is_directory)(fs_node_t *);
-	bool (* is_file)(fs_node_t *);
-	service_id_t (* service_get)(fs_node_t *);
-	errno_t (* size_block)(service_id_t, uint32_t *);
-	errno_t (* total_block_count)(service_id_t, uint64_t *);
-	errno_t (* free_block_count)(service_id_t, uint64_t *);
+	fs_index_t (*index_get)(fs_node_t *);
+	aoff64_t (*size_get)(fs_node_t *);
+	unsigned int (*lnkcnt_get)(fs_node_t *);
+	bool (*is_directory)(fs_node_t *);
+	bool (*is_file)(fs_node_t *);
+	service_id_t (*service_get)(fs_node_t *);
+	errno_t (*size_block)(service_id_t, uint32_t *);
+	errno_t (*total_block_count)(service_id_t, uint64_t *);
+	errno_t (*free_block_count)(service_id_t, uint64_t *);
 } libfs_ops_t;
 
Index: uspace/lib/graph/graph.h
===================================================================
--- uspace/lib/graph/graph.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/graph/graph.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -54,5 +54,5 @@
 	 * Device driver shall allocate any necessary internal structures
 	 * specific for a claimed visualizer. */
-	errno_t (* claim)(struct visualizer *vs);
+	errno_t (*claim)(struct visualizer *vs);
 	
 	/**
@@ -61,5 +61,5 @@
 	 * the mode is set and if so it shall change its internal state
 	 * accordingly (e.g. deallocate frame buffers). */
-	errno_t (* yield)(struct visualizer *vs);
+	errno_t (*yield)(struct visualizer *vs);
 	
 	/**
@@ -72,5 +72,5 @@
 	 * optimization), the pointer to the handle_damage operation can be
 	 * changed at this point. */
-	errno_t (* change_mode)(struct visualizer *vs, vslmode_t new_mode);
+	errno_t (*change_mode)(struct visualizer *vs, vslmode_t new_mode);
 	
 	/**
@@ -82,7 +82,7 @@
 	 * shall be added to the coordinates and if necessary the result shall be
 	 * wrapped around the edge of the backbuffer). */
-	errno_t (* handle_damage)(struct visualizer *vs,
+	errno_t (*handle_damage)(struct visualizer *vs,
 	    sysarg_t x, sysarg_t y, sysarg_t width, sysarg_t height,
-		sysarg_t x_offset, sysarg_t y_offset);
+	    sysarg_t x_offset, sysarg_t y_offset);
 	
 	/**
@@ -90,10 +90,10 @@
 	 * case, device driver might enable power saving mode on the device
 	 * corresponding to the visualizer. */
-	errno_t (* suspend)(struct visualizer *vs);
+	errno_t (*suspend)(struct visualizer *vs);
 	
 	/**
 	 * When upper layers detect activity on suspended visualizer, device
 	 * driver shall disable power saving mode on the corresponding device. */
-	errno_t (* wakeup)(struct visualizer *vs);
+	errno_t (*wakeup)(struct visualizer *vs);
 } visualizer_ops_t;
 
Index: uspace/lib/hound/include/hound/client.h
===================================================================
--- uspace/lib/hound/include/hound/client.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/hound/include/hound/client.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -47,7 +47,7 @@
 typedef struct hound_stream hound_stream_t;
 
-hound_context_t * hound_context_create_playback(const char *name,
+hound_context_t *hound_context_create_playback(const char *name,
     pcm_format_t format, size_t bsize);
-hound_context_t * hound_context_create_capture(const char *name,
+hound_context_t *hound_context_create_capture(const char *name,
     pcm_format_t format, size_t bsize);
 void hound_context_destroy(hound_context_t *hound);
@@ -61,6 +61,6 @@
     char ***names, size_t *count);
 
-errno_t hound_context_connect_target(hound_context_t *hound, const char* target);
-errno_t hound_context_disconnect_target(hound_context_t *hound, const char* target);
+errno_t hound_context_connect_target(hound_context_t *hound, const char *target);
+errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target);
 
 hound_stream_t *hound_stream_create(hound_context_t *hound, unsigned flags,
Index: uspace/lib/nic/include/nic_addr_db.h
===================================================================
--- uspace/lib/nic/include/nic_addr_db.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/nic/include/nic_addr_db.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -62,5 +62,5 @@
 extern bool nic_addr_db_contains(const nic_addr_db_t *db, const uint8_t *addr);
 extern void nic_addr_db_foreach(const nic_addr_db_t *db,
-	void (*func)(const uint8_t *, void *), void *arg);
+    void (*func)(const uint8_t *, void *), void *arg);
 
 #endif
Index: uspace/lib/nic/include/nic_impl.h
===================================================================
--- uspace/lib/nic/include/nic_impl.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/nic/include/nic_impl.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -82,5 +82,5 @@
 
 extern void nic_default_handler_impl(ddf_fun_t *dev_fun,
-	ipc_callid_t callid, ipc_call_t *call);
+    ipc_callid_t callid, ipc_call_t *call);
 extern errno_t nic_open_impl(ddf_fun_t *fun);
 extern void nic_close_impl(ddf_fun_t *fun);
Index: uspace/lib/nic/include/nic_wol_virtues.h
===================================================================
--- uspace/lib/nic/include/nic_wol_virtues.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/nic/include/nic_wol_virtues.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -78,10 +78,10 @@
 extern errno_t nic_wol_virtues_verify(nic_wv_type_t, const void *, size_t);
 extern errno_t nic_wol_virtues_list(const nic_wol_virtues_t *, nic_wv_type_t type,
-	size_t max_count, nic_wv_id_t *id_list, size_t *id_count);
+    size_t max_count, nic_wv_id_t *id_list, size_t *id_count);
 extern errno_t nic_wol_virtues_add(nic_wol_virtues_t *, nic_wol_virtue_t *);
 extern nic_wol_virtue_t *nic_wol_virtues_remove(nic_wol_virtues_t *,
-	nic_wv_id_t);
+    nic_wv_id_t);
 extern const nic_wol_virtue_t *nic_wol_virtues_find(const nic_wol_virtues_t *,
-	nic_wv_id_t);
+    nic_wv_id_t);
 
 #endif
Index: uspace/lib/pcut/src/internal.h
===================================================================
--- uspace/lib/pcut/src/internal.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/pcut/src/internal.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -125,5 +125,5 @@
 	/** Test completed. */
 	void (*test_done)(pcut_item_t *, int, const char *, const char *,
-		const char *);
+	    const char *);
 };
 
@@ -135,8 +135,8 @@
 void pcut_report_test_start(pcut_item_t *test);
 void pcut_report_test_done(pcut_item_t *test, int outcome,
-		const char *error_message, const char *teardown_error_message,
-		const char *extra_output);
+    const char *error_message, const char *teardown_error_message,
+    const char *extra_output);
 void pcut_report_test_done_unparsed(pcut_item_t *test, int outcome,
-		const char *unparsed_output, size_t unparsed_output_size);
+    const char *unparsed_output, size_t unparsed_output_size);
 void pcut_report_done(void);
 
Index: uspace/lib/posix/include/posix/float.h
===================================================================
--- uspace/lib/posix/include/posix/float.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/posix/include/posix/float.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -41,40 +41,40 @@
 /* define some standard C constants in terms of GCC built-ins */
 #ifdef __GNUC__
-	#undef DBL_MANT_DIG
-	#define DBL_MANT_DIG __DBL_MANT_DIG__
-	#undef DBL_MIN_EXP
-	#define DBL_MIN_EXP __DBL_MIN_EXP__
-	#undef DBL_MAX_EXP
-	#define DBL_MAX_EXP __DBL_MAX_EXP__
-	#undef DBL_MAX
-	#define DBL_MAX __DBL_MAX__
-	#undef DBL_MAX_10_EXP
-	#define DBL_MAX_10_EXP __DBL_MAX_10_EXP__
-	#undef DBL_MIN_10_EXP
-	#define DBL_MIN_10_EXP __DBL_MIN_10_EXP__
-	#undef DBL_MIN
-	#define DBL_MIN __DBL_MIN__
-	#undef DBL_DIG
-	#define DBL_DIG __DBL_DIG__
-	#undef DBL_EPSILON
-	#define DBL_EPSILON __DBL_EPSILON__
-	#undef LDBL_EPSILON
-	#define LDBL_EPSILON __LDBL_EPSILON__
-	#undef FLT_RADIX
-	#define FLT_RADIX __FLT_RADIX__
-	#undef FLT_MIN
-	#define FLT_MIN __FLT_MIN__
-	#undef FLT_MAX
-	#define FLT_MAX __FLT_MAX__
-	#undef FLT_EPSILON
-	#define FLT_EPSILON __FLT_EPSILON__
-	#undef FLT_MANT_DIG
-	#define FLT_MANT_DIG __FLT_MANT_DIG__
-	#undef LDBL_MIN
-	#define LDBL_MIN __LDBL_MIN__
-	#undef LDBL_MAX
-	#define LDBL_MAX __LDBL_MAX__
-	#undef LDBL_MANT_DIG 
-	#define LDBL_MANT_DIG __LDBL_MANT_DIG__
+#undef DBL_MANT_DIG
+#define DBL_MANT_DIG __DBL_MANT_DIG__
+#undef DBL_MIN_EXP
+#define DBL_MIN_EXP __DBL_MIN_EXP__
+#undef DBL_MAX_EXP
+#define DBL_MAX_EXP __DBL_MAX_EXP__
+#undef DBL_MAX
+#define DBL_MAX __DBL_MAX__
+#undef DBL_MAX_10_EXP
+#define DBL_MAX_10_EXP __DBL_MAX_10_EXP__
+#undef DBL_MIN_10_EXP
+#define DBL_MIN_10_EXP __DBL_MIN_10_EXP__
+#undef DBL_MIN
+#define DBL_MIN __DBL_MIN__
+#undef DBL_DIG
+#define DBL_DIG __DBL_DIG__
+#undef DBL_EPSILON
+#define DBL_EPSILON __DBL_EPSILON__
+#undef LDBL_EPSILON
+#define LDBL_EPSILON __LDBL_EPSILON__
+#undef FLT_RADIX
+#define FLT_RADIX __FLT_RADIX__
+#undef FLT_MIN
+#define FLT_MIN __FLT_MIN__
+#undef FLT_MAX
+#define FLT_MAX __FLT_MAX__
+#undef FLT_EPSILON
+#define FLT_EPSILON __FLT_EPSILON__
+#undef FLT_MANT_DIG
+#define FLT_MANT_DIG __FLT_MANT_DIG__
+#undef LDBL_MIN
+#define LDBL_MIN __LDBL_MIN__
+#undef LDBL_MAX
+#define LDBL_MAX __LDBL_MAX__
+#undef LDBL_MANT_DIG 
+#define LDBL_MANT_DIG __LDBL_MANT_DIG__
 #else
 /* For something else than GCC, following definitions are provided.
Index: uspace/lib/posix/include/posix/locale.h
===================================================================
--- uspace/lib/posix/include/posix/locale.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/posix/include/posix/locale.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -39,6 +39,6 @@
 
 #ifndef __locale_t_defined
-	#define __locale_t_defined
-	typedef struct __posix_locale *locale_t;
+#define __locale_t_defined
+typedef struct __posix_locale *locale_t;
 #endif
 
Index: uspace/lib/posix/include/posix/math.h
===================================================================
--- uspace/lib/posix/include/posix/math.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/posix/include/posix/math.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -43,5 +43,5 @@
 
 #ifdef __GNUC__
-	#define HUGE_VAL (__builtin_huge_val())
+#define HUGE_VAL (__builtin_huge_val())
 #endif
 
Index: uspace/lib/posix/include/posix/pthread.h
===================================================================
--- uspace/lib/posix/include/posix/pthread.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/posix/include/posix/pthread.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -105,5 +105,5 @@
 extern int pthread_setspecific(pthread_key_t, const void *);
 extern int pthread_key_delete(pthread_key_t);
-extern int pthread_key_create(pthread_key_t *, void (*)(void*));
+extern int pthread_key_create(pthread_key_t *, void (*)(void *));
 
 #endif
Index: uspace/lib/posix/include/posix/sys/mman.h
===================================================================
--- uspace/lib/posix/include/posix/sys/mman.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/posix/include/posix/sys/mman.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -56,6 +56,5 @@
 #define PROT_EXEC  AS_AREA_EXEC
 
-extern void *
-mmap(void *start, size_t length, int prot, int flags, int fd,
+extern void *mmap(void *start, size_t length, int prot, int flags, int fd,
     off_t offset);
 extern int munmap(void *start, size_t length);
Index: uspace/lib/softint/include/lltype.h
===================================================================
--- uspace/lib/softint/include/lltype.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/softint/include/lltype.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -43,9 +43,9 @@
 
 #ifdef __BE__
-	#define LO 1
-	#define HI 0
+#define LO 1
+#define HI 0
 #else
-	#define LO 0
-	#define HI 1
+#define LO 0
+#define HI 1
 #endif
 
Index: uspace/lib/usbhid/include/usb/hid/hiddescriptor.h
===================================================================
--- uspace/lib/usbhid/include/usb/hid/hiddescriptor.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhid/include/usb/hid/hiddescriptor.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -44,5 +44,5 @@
 
 errno_t usb_hid_parse_report_descriptor(usb_hid_report_t *report,
-		const uint8_t *data, size_t size);
+    const uint8_t *data, size_t size);
 
 void usb_hid_descriptor_print(usb_hid_report_t *report);
@@ -53,25 +53,25 @@
 
 errno_t usb_hid_report_append_fields(usb_hid_report_t *report,
-		usb_hid_report_item_t *report_item);
+    usb_hid_report_item_t *report_item);
 
-usb_hid_report_description_t * usb_hid_report_find_description(
-		const usb_hid_report_t *report, uint8_t report_id,
-		usb_hid_report_type_t type);
+usb_hid_report_description_t *usb_hid_report_find_description(
+    const usb_hid_report_t *report, uint8_t report_id,
+    usb_hid_report_type_t type);
 
 int usb_hid_report_parse_tag(uint8_t tag, uint8_t class, const uint8_t *data,
-		size_t item_size, usb_hid_report_item_t *report_item,
-		usb_hid_report_path_t *usage_path);
+    size_t item_size, usb_hid_report_item_t *report_item,
+    usb_hid_report_path_t *usage_path);
 
-int usb_hid_report_parse_main_tag(uint8_t tag, const uint8_t *data, 
-		size_t item_size, usb_hid_report_item_t *report_item,
-		usb_hid_report_path_t *usage_path);
+int usb_hid_report_parse_main_tag(uint8_t tag, const uint8_t *data,
+    size_t item_size, usb_hid_report_item_t *report_item,
+    usb_hid_report_path_t *usage_path);
 
-int usb_hid_report_parse_global_tag(uint8_t tag, const uint8_t *data, 
-		size_t item_size, usb_hid_report_item_t *report_item,
-		usb_hid_report_path_t *usage_path);
+int usb_hid_report_parse_global_tag(uint8_t tag, const uint8_t *data,
+    size_t item_size, usb_hid_report_item_t *report_item,
+    usb_hid_report_path_t *usage_path);
 
-int usb_hid_report_parse_local_tag(uint8_t tag, const uint8_t *data, 
-		size_t item_size, usb_hid_report_item_t *report_item,
-		usb_hid_report_path_t *usage_path);
+int usb_hid_report_parse_local_tag(uint8_t tag, const uint8_t *data,
+    size_t item_size, usb_hid_report_item_t *report_item,
+    usb_hid_report_path_t *usage_path);
 
 void usb_hid_descriptor_print_list(list_t *list);
@@ -80,10 +80,10 @@
 
 usb_hid_report_item_t *usb_hid_report_item_clone(
-		const usb_hid_report_item_t *item);
+    const usb_hid_report_item_t *item);
 
 uint32_t usb_hid_report_tag_data_uint32(const uint8_t *data, size_t size);
 
-usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t*report,
-		usb_hid_report_path_t *cmp_path);
+usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t *report,
+    usb_hid_report_path_t *cmp_path);
 
 
Index: uspace/lib/usbhid/include/usb/hid/hidparser.h
===================================================================
--- uspace/lib/usbhid/include/usb/hid/hidparser.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhid/include/usb/hid/hidparser.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -48,23 +48,23 @@
  */
 errno_t usb_hid_parse_report(const usb_hid_report_t *report, const uint8_t *data,
-		size_t size, uint8_t *report_id);
+    size_t size, uint8_t *report_id);
 
 /*
  * Output report parser functions
  */
-uint8_t *usb_hid_report_output(usb_hid_report_t *report, size_t *size, 
-		uint8_t report_id);
+uint8_t *usb_hid_report_output(usb_hid_report_t *report, size_t *size,
+    uint8_t report_id);
 
 void usb_hid_report_output_free(uint8_t *output);
 
 size_t usb_hid_report_size(usb_hid_report_t *report, uint8_t report_id,
-		usb_hid_report_type_t type);
+    usb_hid_report_type_t type);
 
 size_t usb_hid_report_byte_size(usb_hid_report_t *report, uint8_t report_id,
-		usb_hid_report_type_t type);
+    usb_hid_report_type_t type);
 
 
-errno_t usb_hid_report_output_translate(usb_hid_report_t *report, 
-		uint8_t report_id, uint8_t *buffer, size_t size);
+errno_t usb_hid_report_output_translate(usb_hid_report_t *report,
+    uint8_t report_id, uint8_t *buffer, size_t size);
 
 
@@ -73,9 +73,9 @@
  */
 usb_hid_report_field_t *usb_hid_report_get_sibling(usb_hid_report_t *report,
-		usb_hid_report_field_t *field, usb_hid_report_path_t *path,
-		int flags, usb_hid_report_type_t type);
+    usb_hid_report_field_t *field, usb_hid_report_path_t *path,
+    int flags, usb_hid_report_type_t type);
 
-uint8_t usb_hid_get_next_report_id(usb_hid_report_t *report, 
-		uint8_t report_id, usb_hid_report_type_t type);
+uint8_t usb_hid_get_next_report_id(usb_hid_report_t *report,
+    uint8_t report_id, usb_hid_report_type_t type);
 
 #endif
Index: uspace/lib/usbhid/include/usb/hid/hidpath.h
===================================================================
--- uspace/lib/usbhid/include/usb/hid/hidpath.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhid/include/usb/hid/hidpath.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -83,5 +83,5 @@
 	/** Usage page of report item. Zero when usage page can be changed. */
 	uint32_t usage_page;
-	/** Usage of report item. Zero when usage can be changed. */	
+	/** Usage of report item. Zero when usage can be changed. */
 	uint32_t usage;
 
@@ -119,8 +119,8 @@
 
 errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path,
-		uint8_t report_id);
+    uint8_t report_id);
 
-errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, 
-		int32_t usage_page, int32_t usage);
+errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
+    int32_t usage_page, int32_t usage);
 
 void usb_hid_report_remove_last_item(usb_hid_report_path_t *usage_path);
@@ -128,12 +128,12 @@
 void usb_hid_report_null_last_item(usb_hid_report_path_t *usage_path);
 
-void usb_hid_report_set_last_item(usb_hid_report_path_t *usage_path, 
-		int32_t tag, int32_t data);
+void usb_hid_report_set_last_item(usb_hid_report_path_t *usage_path,
+    int32_t tag, int32_t data);
 
 int usb_hid_report_compare_usage_path(usb_hid_report_path_t *report_path,
-		usb_hid_report_path_t *path, int flags);
+    usb_hid_report_path_t *path, int flags);
 
 usb_hid_report_path_t *usb_hid_report_path_clone(
-		usb_hid_report_path_t *usage_path);
+    usb_hid_report_path_t *usage_path);
 
 void usb_hid_print_usage_path(usb_hid_report_path_t *path);
Index: uspace/lib/usbhid/include/usb/hid/hidreport.h
===================================================================
--- uspace/lib/usbhid/include/usb/hid/hidreport.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhid/include/usb/hid/hidreport.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -58,5 +58,5 @@
  *         usb_pipe_end_session() or usb_request_get_descriptor().
  */
-errno_t usb_hid_process_report_descriptor(usb_device_t *dev, 
+errno_t usb_hid_process_report_descriptor(usb_device_t *dev,
     usb_hid_report_t *report, uint8_t **report_desc, size_t *report_size);
 
Index: uspace/lib/usbhid/include/usb/hid/request.h
===================================================================
--- uspace/lib/usbhid/include/usb/hid/request.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhid/include/usb/hid/request.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -47,14 +47,14 @@
     usb_hid_report_type_t type, uint8_t *buffer, size_t buf_size);
 
-errno_t usbhid_req_set_protocol(usb_pipe_t *ctrl_pipe, int iface_no, 
+errno_t usbhid_req_set_protocol(usb_pipe_t *ctrl_pipe, int iface_no,
     usb_hid_protocol_t protocol);
 
 errno_t usbhid_req_set_idle(usb_pipe_t *ctrl_pipe, int iface_no, uint8_t duration);
 
-errno_t usbhid_req_get_report(usb_pipe_t *ctrl_pipe, int iface_no, 
-    usb_hid_report_type_t type, uint8_t *buffer, size_t buf_size, 
+errno_t usbhid_req_get_report(usb_pipe_t *ctrl_pipe, int iface_no,
+    usb_hid_report_type_t type, uint8_t *buffer, size_t buf_size,
     size_t *actual_size);
 
-errno_t usbhid_req_get_protocol(usb_pipe_t *ctrl_pipe, int iface_no, 
+errno_t usbhid_req_get_protocol(usb_pipe_t *ctrl_pipe, int iface_no,
     usb_hid_protocol_t *protocol);
 
Index: uspace/lib/usbhost/include/usb/host/usb_bus.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/usb_bus.h	(revision 083bd7c6bd064f664949046206d7136ea222b25b)
+++ uspace/lib/usbhost/include/usb/host/usb_bus.h	(revision 1ab3c4b698c08d84c77675ba474ca8dfd5164dbc)
@@ -92,5 +92,5 @@
 errno_t usb_bus_unregister_ep(usb_bus_t *instance, endpoint_t *ep);
 
-endpoint_t * usb_bus_find_ep(usb_bus_t *instance,
+endpoint_t *usb_bus_find_ep(usb_bus_t *instance,
     usb_address_t address, usb_endpoint_t ep, usb_direction_t direction);
 
