Index: uspace/lib/c/include/device/hw_res.h
===================================================================
--- uspace/lib/c/include/device/hw_res.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/device/hw_res.h	(revision 95aed62f997beed657c99c003a81e20a7a71d608)
@@ -82,5 +82,5 @@
 			endianness_t endianness;
 		} mem_range;
-		
+
 		struct {
 			uint64_t address;
@@ -89,9 +89,9 @@
 			endianness_t endianness;
 		} io_range;
-		
+
 		struct {
 			int irq;
 		} interrupt;
-		
+
 		union {
 			unsigned int dma8;
@@ -112,5 +112,5 @@
 		hw_res->resources = NULL;
 	}
-	
+
 	hw_res->count = 0;
 }
Index: uspace/lib/c/include/device/hw_res_parsed.h
===================================================================
--- uspace/lib/c/include/device/hw_res_parsed.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/device/hw_res_parsed.h	(revision 95aed62f997beed657c99c003a81e20a7a71d608)
@@ -64,5 +64,5 @@
 	/** Start address */
 	address64_t address;
-	
+
 	/** Area size */
 	size_t size;
@@ -82,5 +82,5 @@
 	/** Irq count */
 	size_t count;
-	
+
 	/** Array of IRQs */
 	int *irqs;
@@ -100,5 +100,5 @@
 	/** Areas count */
 	size_t count;
-	
+
 	/** Array of areas */
 	addr_range_t *ranges;
@@ -115,11 +115,11 @@
 	/** List of IRQs */
 	irq_list_t irqs;
-	
+
 	/** List of DMA channels */
 	dma_list_t dma_channels;
-	
+
 	/** List of memory areas */
 	mem_range_list_t mem_ranges;
-	
+
 	/** List of IO areas */
 	io_range_list_t io_ranges;
@@ -136,10 +136,10 @@
 	if (list == NULL)
 		return;
-	
+
 	free(list->irqs.irqs);
 	free(list->io_ranges.ranges);
 	free(list->mem_ranges.ranges);
 	free(list->dma_channels.channels);
-	
+
 	memset(list, 0, sizeof(hw_res_list_parsed_t));
 }
