Index: kernel/genarch/src/multiboot/multiboot.c
===================================================================
--- kernel/genarch/src/multiboot/multiboot.c	(revision 300916479fd4f230c8e5bb4f9d81b09c3f02feb5)
+++ kernel/genarch/src/multiboot/multiboot.c	(revision 95aed62f997beed657c99c003a81e20a7a71d608)
@@ -52,5 +52,5 @@
 	if (end == NULL)
 		end = cmd_line + str_size(cmd_line);
-	
+
 	/*
 	 * Find last occurence of '/' before 'end'. If found, place start at
@@ -59,5 +59,5 @@
 	const char *cp = end;
 	const char *start = buf;
-	
+
 	while (cp != start) {
 		if (*cp == '/') {
@@ -67,5 +67,5 @@
 		cp--;
 	}
-	
+
 	/* Copy the command. */
 	str_ncpy(buf, size, start, (size_t) (end - start));
@@ -106,8 +106,8 @@
 		if (init.cnt >= CONFIG_INIT_TASKS)
 			break;
-		
+
 		init.tasks[init.cnt].paddr = mods[i].start;
 		init.tasks[init.cnt].size = mods[i].end - mods[i].start;
-		
+
 		/* Copy command line, if available. */
 		if (mods[i].string) {
@@ -120,5 +120,5 @@
 			init.tasks[init.cnt].arguments[0] = 0;
 		}
-		
+
 		init.cnt++;
 	}
@@ -128,13 +128,13 @@
 {
 	uint32_t pos = 0;
-	
+
 	while ((pos < length) && (e820counter < MEMMAP_E820_MAX_RECORDS)) {
 		e820table[e820counter] = memmap->mm_info;
-		
+
 		/* Compute address of next structure. */
 		uint32_t size = sizeof(memmap->size) + memmap->size;
 		memmap = (multiboot_memmap_t *) ((uintptr_t) memmap + size);
 		pos += size;
-		
+
 		e820counter++;
 	}
@@ -163,5 +163,5 @@
 		multiboot_modules(info->mods_count,
 		    (multiboot_module_t *) MULTIBOOT_PTR(info->mods_addr));
-	
+
 	/* Copy memory map. */
 	if ((info->flags & MULTIBOOT_INFO_FLAGS_MMAP) != 0)
Index: kernel/genarch/src/multiboot/multiboot2.c
===================================================================
--- kernel/genarch/src/multiboot/multiboot2.c	(revision 300916479fd4f230c8e5bb4f9d81b09c3f02feb5)
+++ kernel/genarch/src/multiboot/multiboot2.c	(revision 95aed62f997beed657c99c003a81e20a7a71d608)
@@ -56,5 +56,5 @@
 		multiboot_extract_argument(init.tasks[init.cnt].arguments,
 		    CONFIG_TASK_ARGUMENTS_BUFLEN, module->string);
-		
+
 		init.cnt++;
 	}
@@ -66,15 +66,15 @@
 	    ((uintptr_t) memmap + sizeof(*memmap));
 	uint32_t pos = sizeof(*memmap);
-	
+
 	while ((pos < length) && (e820counter < MEMMAP_E820_MAX_RECORDS)) {
 		e820table[e820counter].base_address = entry->base_address;
 		e820table[e820counter].size = entry->size;
 		e820table[e820counter].type = entry->type;
-		
+
 		/* Compute address of next entry. */
 		entry = (multiboot2_memmap_entry_t *)
 		    ((uintptr_t) entry + memmap->entry_size);
 		pos += memmap->entry_size;
-		
+
 		e820counter++;
 	}
@@ -90,11 +90,11 @@
 		bfb_bpp = fbinfo->bpp;
 		bfb_scanline = fbinfo->scanline;
-		
+
 		bfb_red_pos = fbinfo->rgb.red_pos;
 		bfb_red_size = fbinfo->rgb.red_size;
-		
+
 		bfb_green_pos = fbinfo->rgb.green_pos;
 		bfb_green_size = fbinfo->rgb.green_size;
-		
+
 		bfb_blue_pos = fbinfo->rgb.blue_pos;
 		bfb_blue_size = fbinfo->rgb.blue_size;
@@ -116,8 +116,8 @@
 	if (signature != MULTIBOOT2_LOADER_MAGIC)
 		return;
-	
+
 	const multiboot2_tag_t *tag = (const multiboot2_tag_t *)
 	    ALIGN_UP((uintptr_t) info + sizeof(*info), MULTIBOOT2_TAG_ALIGN);
-	
+
 	while (tag->type != MULTIBOOT2_TAG_TERMINATOR) {
 		switch (tag->type) {
@@ -135,5 +135,5 @@
 			break;
 		}
-		
+
 		tag = (const multiboot2_tag_t *)
 		    ALIGN_UP((uintptr_t) tag + tag->size, MULTIBOOT2_TAG_ALIGN);
