From b5b37d6e2b377bedeec8d61db0f09d40ec11aa97 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 22 Nov 2019 16:12:28 +0100 Subject: [PATCH] Remove unused `crate::hlt_loop` import --- src/interrupts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interrupts.rs b/src/interrupts.rs index 10fbc21f..48b9c83c 100644 --- a/src/interrupts.rs +++ b/src/interrupts.rs @@ -4,7 +4,7 @@ // problem we skip compilation of this module on Windows. #![cfg(not(windows))] -use crate::{gdt, hlt_loop, print, println}; +use crate::{gdt, print, println}; use lazy_static::lazy_static; use pic8259_simple::ChainedPics; use spin;