From a1171815e30d06c3bce0212d7973e8c6a4bd0907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Fri, 3 May 2024 13:34:11 +0200 Subject: [PATCH] fix(x86_64/newlib): remove unused import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/arch/x86_64/kernel/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/arch/x86_64/kernel/mod.rs b/src/arch/x86_64/kernel/mod.rs index f9e10660f8..a431d08f41 100644 --- a/src/arch/x86_64/kernel/mod.rs +++ b/src/arch/x86_64/kernel/mod.rs @@ -2,8 +2,6 @@ use core::arch::asm; use core::num::NonZeroU64; use core::ptr; -#[cfg(feature = "newlib")] -use core::slice; use core::sync::atomic::{AtomicPtr, AtomicU32, Ordering}; use hermit_entry::boot_info::{BootInfo, PlatformInfo, RawBootInfo};