diff options
author | Danny Holman <dholman@gymli.org> | 2023-11-26 19:14:32 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2023-11-26 19:14:32 -0600 |
commit | 19b5c8699f0d201a8ffe41594d966d143320260d (patch) | |
tree | fb032b1e0d1371ac740b48ee3e8e274f60adef2c | |
parent | 930a24807db8250a20e81509e4ec9c69a5e5a3c9 (diff) |
arch: i386: alloc: remove erroneous halt instruction
Remove an inline assembly instruction that was placed for debugging
purposes.
Signed-off-by: Danny Holman <dholman@gymli.org>
-rw-r--r-- | arch/i386/kernel/alloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |