Index: uspace/lib/c/generic/device/hw_res.c
===================================================================
--- uspace/lib/c/generic/device/hw_res.c	(revision 301032a87023b80a020de82584ef102eae4ad415)
+++ uspace/lib/c/generic/device/hw_res.c	(revision f7fba7277882a6df08dd8243f8defd20790424c9)
@@ -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 301032a87023b80a020de82584ef102eae4ad415)
+++ uspace/lib/c/generic/device/hw_res_parsed.c	(revision f7fba7277882a6df08dd8243f8defd20790424c9)
@@ -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;
 };
