From aac087669219f58eb45eb6688583a55365f6544c 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 29993a508d..da06a4df81 100644 --- a/src/arch/x86_64/kernel/mod.rs +++ b/src/arch/x86_64/kernel/mod.rs @@ -1,8 +1,6 @@ #[cfg(feature = "common-os")] use core::arch::asm; use core::num::NonZeroU64; -#[cfg(feature = "newlib")] -use core::slice; use core::sync::atomic::{AtomicU32, AtomicU64, Ordering}; use hermit_entry::boot_info::{BootInfo, PlatformInfo, RawBootInfo};