From 19b5c8699f0d201a8ffe41594d966d143320260d Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 26 Nov 2023 19:14:32 -0600 Subject: arch: i386: alloc: remove erroneous halt instruction Remove an inline assembly instruction that was placed for debugging purposes. Signed-off-by: Danny Holman --- arch/i386/kernel/alloc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/i386/kernel/alloc.c b/arch/i386/kernel/alloc.c index d2ddf79..890c2f1 100644 --- a/arch/i386/kernel/alloc.c +++ b/arch/i386/kernel/alloc.c @@ -33,7 +33,6 @@ uint32_t pfa_alloc_frame(void) { return i * 4096; } } - __asm__ volatile("hlt"); return 0xFFFFFFFF; } -- cgit v1.2.3