Index: kernel/arch/sparc64/src/sparc64.c
===================================================================
--- kernel/arch/sparc64/src/sparc64.c	(revision cd896e26b27f7c29d75d04d6d8a133a42f7ebe4a)
+++ kernel/arch/sparc64/src/sparc64.c	(revision aeaebcc155defcfcb8ff9cf60ddacb07fd8e84a7)
@@ -100,5 +100,5 @@
 	         * Create thread that polls keyboard.
 	         */
-		t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
+		t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true);
 		if (!t)
 			panic("cannot create kkbdpoll\n");
@@ -127,5 +127,6 @@
 void asm_delay_loop(const uint32_t usec)
 {
-	uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t) CPU->arch.clock_frequency / 1000000;
+	uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t)
+		CPU->arch.clock_frequency / 1000000;
 
 	while (tick_read() < stop)
