Index: uspace/lib/c/generic/device/hw_res.c
===================================================================
--- uspace/lib/c/generic/device/hw_res.c	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/c/generic/device/hw_res.c	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -42,5 +42,5 @@
 {
 	sysarg_t count = 0;
-
+	
 	async_exch_t *exch = async_exchange_begin(sess);
 	if (exch == NULL)
@@ -48,10 +48,10 @@
 	int rc = async_req_1_1(exch, DEV_IFACE_ID(HW_RES_DEV_IFACE),
 	    HW_RES_GET_RESOURCE_LIST, &count);
-
+	
 	if (rc != EOK) {
 		async_exchange_end(exch);
 		return rc;
 	}
-
+	
 	size_t size = count * sizeof(hw_resource_t);
 	hw_resource_t *resources = (hw_resource_t *) malloc(size);
@@ -61,16 +61,16 @@
 		return ENOMEM;
 	}
-
+	
 	rc = async_data_read_start(exch, resources, size);
 	async_exchange_end(exch);
-
+	
 	if (rc != EOK) {
 		free(resources);
 		return rc;
 	}
-
+	
 	hw_resources->resources = resources;
 	hw_resources->count = count;
-
+	
 	return EOK;
 }
@@ -84,5 +84,5 @@
 	    HW_RES_ENABLE_INTERRUPT);
 	async_exchange_end(exch);
-
+	
 	return (rc == EOK);
 }
Index: uspace/lib/c/generic/device/hw_res_parsed.c
===================================================================
--- uspace/lib/c/generic/device/hw_res_parsed.c	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/c/generic/device/hw_res_parsed.c	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -175,5 +175,5 @@
 	for (size_t i = 0; i < res_count; ++i) {
 		const hw_resource_t *resource = &(hw_resources->resources[i]);
-
+		
 		switch (resource->type) {
 		case INTERRUPT:
@@ -195,5 +195,5 @@
 		}
 	}
-
+	
 	return EOK;
 };
Index: uspace/lib/c/include/device/hw_res_parsed.h
===================================================================
--- uspace/lib/c/include/device/hw_res_parsed.h	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/c/include/device/hw_res_parsed.h	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -139,6 +139,6 @@
 }
 
-extern int hw_res_list_parse(
-    const hw_resource_list_t *, hw_res_list_parsed_t *, int);
+extern int hw_res_list_parse(const hw_resource_list_t *,
+    hw_res_list_parsed_t *, int);
 extern int hw_res_get_list_parsed(async_sess_t *, hw_res_list_parsed_t *, int);
 
Index: uspace/lib/c/include/ipc/dev_iface.h
===================================================================
--- uspace/lib/c/include/ipc/dev_iface.h	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/c/include/ipc/dev_iface.h	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -37,9 +37,4 @@
 	HW_RES_DEV_IFACE = 0,
 
-	/** Audio device mixer interface */
-	AUDIO_MIXER_IFACE,
-	/** Audio device pcm buffer interface */
-	AUDIO_PCM_BUFFER_IFACE,
-
 	/** Character device interface */
 	CHAR_DEV_IFACE,
@@ -47,4 +42,9 @@
 	/** Graphic device interface */
 	GRAPH_DEV_IFACE,
+
+	/** Audio device mixer interface */
+	AUDIO_MIXER_IFACE,
+	/** Audio device pcm buffer interface */
+	AUDIO_PCM_BUFFER_IFACE,
 	
 	/** Network interface controller interface */
@@ -60,8 +60,11 @@
 	/** Interface provided by USB HID devices. */
 	USBHID_DEV_IFACE,
+
 	/** Interface provided by Real Time Clock devices */
 	CLOCK_DEV_IFACE,
+
 	/** Interface provided by battery powered devices */
 	BATTERY_DEV_IFACE,
+
 	/** Interface provided by AHCI devices. */
 	AHCI_DEV_IFACE,
Index: uspace/lib/drv/generic/dev_iface.c
===================================================================
--- uspace/lib/drv/generic/dev_iface.c	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/drv/generic/dev_iface.c	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -67,5 +67,5 @@
 		[CLOCK_DEV_IFACE] = &remote_clock_dev_iface,
 		[BATTERY_DEV_IFACE] = &remote_battery_dev_iface,
-		[AHCI_DEV_IFACE] = &remote_ahci_iface,
+		[AHCI_DEV_IFACE] = &remote_ahci_iface
 	}
 };
Index: uspace/lib/softfloat/softfloat.c
===================================================================
--- uspace/lib/softfloat/softfloat.c	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/lib/softfloat/softfloat.c	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -1265,5 +1265,4 @@
 }
 
-
 float __aeabi_i2f(int i)
 {
Index: uspace/srv/hid/compositor/compositor.c
===================================================================
--- uspace/srv/hid/compositor/compositor.c	(revision a6bdccc8259e40041614c754e269275597f9979d)
+++ uspace/srv/hid/compositor/compositor.c	(revision cf02eaf20ca2a7fcb7eb5934b972b18b7bc1e6a3)
@@ -2207,5 +2207,5 @@
 	
 	if (list_empty(&viewport_list)) {
-		printf("%s: Failed to get view ports.\n", NAME);
+		printf("%s: Failed to get viewports.\n", NAME);
 		input_disconnect();
 		return -1;
