Index: kernel/generic/include/mm/as.h
===================================================================
--- kernel/generic/include/mm/as.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ kernel/generic/include/mm/as.h	(revision 928a2cbbc75ddb1a52c2123f04217b3c916102ed)
@@ -94,5 +94,5 @@
 	/** Protected by asidlock. */
 	link_t inactive_as_with_asid_link;
-	
+
 	/**
 	 * Number of processors on which this
@@ -101,5 +101,5 @@
 	 */
 	size_t cpu_refcount;
-	
+
 	/** Address space identifier.
 	 *
@@ -109,16 +109,16 @@
 	 */
 	asid_t asid;
-	
+
 	/** Number of references (i.e. tasks that reference this as). */
 	atomic_t refcount;
-	
+
 	mutex_t lock;
-	
+
 	/** B+tree of address space areas. */
 	btree_t as_area_btree;
-	
+
 	/** Non-generic content. */
 	as_genarch_t genarch;
-	
+
 	/** Architecture specific content. */
 	as_arch_t arch;
@@ -178,5 +178,5 @@
 		elf_segment_header_t *segment;
 	};
-	
+
 	/** phys_backend members */
 	struct {
@@ -200,26 +200,26 @@
 typedef struct {
 	mutex_t lock;
-	
+
 	/** Containing address space. */
 	as_t *as;
-	
+
 	/** Memory flags. */
 	unsigned int flags;
-	
+
 	/** Address space area attributes. */
 	unsigned int attributes;
-	
+
 	/** Number of pages in the area. */
 	size_t pages;
-	
+
 	/** Number of resident pages in the area. */
 	size_t resident;
-	
+
 	/** Base address of this area. */
 	uintptr_t base;
-	
+
 	/** Map of used space. */
 	btree_t used_space;
-	
+
 	/**
 	 * If the address space area is shared. this is
@@ -227,8 +227,8 @@
 	 */
 	share_info_t *sh_info;
-	
+
 	/** Memory backend backing this address space area. */
 	struct mem_backend *backend;
-	
+
 	/** Data to be used by the backend. */
 	mem_backend_data_t backend_data;
Index: kernel/generic/include/mm/frame.h
===================================================================
--- kernel/generic/include/mm/frame.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ kernel/generic/include/mm/frame.h	(revision 928a2cbbc75ddb1a52c2123f04217b3c916102ed)
@@ -97,20 +97,20 @@
 	/** Frame_no of the first frame in the frames array */
 	pfn_t base;
-	
+
 	/** Size of zone */
 	size_t count;
-	
+
 	/** Number of free frame_t structures */
 	size_t free_count;
-	
+
 	/** Number of busy frame_t structures */
 	size_t busy_count;
-	
+
 	/** Type of the zone */
 	zone_flags_t flags;
-	
+
 	/** Frame bitmap */
 	bitmap_t bitmap;
-	
+
 	/** Array of frame_t structures in this zone */
 	frame_t *frames;
Index: kernel/generic/include/mm/slab.h
===================================================================
--- kernel/generic/include/mm/slab.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ kernel/generic/include/mm/slab.h	(revision 928a2cbbc75ddb1a52c2123f04217b3c916102ed)
@@ -86,22 +86,22 @@
 typedef struct {
 	const char *name;
-	
+
 	link_t link;
-	
+
 	/* Configuration */
-	
+
 	/** Size of slab position - align_up(sizeof(obj)) */
 	size_t size;
-	
+
 	errno_t (*constructor)(void *obj, unsigned int kmflag);
 	size_t (*destructor)(void *obj);
-	
+
 	/** Flags changing behaviour of cache */
 	unsigned int flags;
-	
+
 	/* Computed values */
 	size_t frames;   /**< Number of frames to be allocated */
 	size_t objects;  /**< Number of objects that fit in */
-	
+
 	/* Statistics */
 	atomic_t allocated_slabs;
@@ -110,5 +110,5 @@
 	/** How many magazines in magazines list */
 	atomic_t magazine_counter;
-	
+
 	/* Slabs */
 	list_t full_slabs;     /**< List of full slabs */
@@ -118,5 +118,5 @@
 	list_t magazines;  /**< List o full magazines */
 	IRQ_SPINLOCK_DECLARE(maglock);
-	
+
 	/** CPU cache */
 	slab_mag_cache_t *mag_cache;
