Index: kernel/genarch/src/srln/srln.c
===================================================================
--- kernel/genarch/src/srln/srln.c	(revision 63e27efdf2fe6d3fa02bbb5ee1da00df5cc07e9d)
+++ kernel/genarch/src/srln/srln.c	(revision e0a4686ebb68dd7d42dd083c5ea6c37d6ced027d)
@@ -53,16 +53,16 @@
 	bool cr = false;
 	uint32_t escape = 0;
-	
+
 	while (true) {
 		wchar_t ch = indev_pop_character(&instance->raw);
-		
+
 		/* ANSI escape sequence processing */
 		if (escape != 0) {
 			escape <<= 8;
 			escape |= ch & 0xff;
-			
+
 			if ((escape == 0x1b4f) || (escape == 0x1b5b) || (escape == 0x1b5b33))
 				continue;
-			
+
 			switch (escape) {
 			case 0x1b4f46:
@@ -100,10 +100,10 @@
 			}
 		}
-		
+
 		if (ch == 0x1b) {
 			escape = ch & 0xff;
 			continue;
 		}
-		
+
 		/* Replace carriage return with line feed
 		   and suppress any following line feed */
@@ -112,5 +112,5 @@
 			continue;
 		}
-		
+
 		if (ch == '\r') {
 			ch = '\n';
@@ -118,9 +118,9 @@
 		} else
 			cr = false;
-		
+
 		/* Backspace */
 		if (ch == 0x7f)
 			ch = '\b';
-		
+
 		indev_push_character(instance->sink, ch);
 	}
@@ -134,14 +134,14 @@
 		instance->thread = thread_create(ksrln, (void *) instance,
 		    TASK, THREAD_FLAG_NONE, "ksrln");
-		
+
 		if (!instance->thread) {
 			free(instance);
 			return NULL;
 		}
-		
+
 		instance->sink = NULL;
 		indev_initialize("srln", &instance->raw, &srln_raw_ops);
 	}
-	
+
 	return instance;
 }
@@ -151,8 +151,8 @@
 	assert(instance);
 	assert(sink);
-	
+
 	instance->sink = sink;
 	thread_ready(instance->thread);
-	
+
 	return &instance->raw;
 }
