From 668296b8e01bc6cc96944348d19c736fd4081c5d Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 10 Aug 2020 00:09:28 +0300 Subject: [PATCH] Fix clippy warning --- nucleus/src/arch/aarch64/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nucleus/src/arch/aarch64/mod.rs b/nucleus/src/arch/aarch64/mod.rs index 424e8d8..8bbf18a 100644 --- a/nucleus/src/arch/aarch64/mod.rs +++ b/nucleus/src/arch/aarch64/mod.rs @@ -9,6 +9,11 @@ use { /// The entry to Rust, all things must be initialized /// This is invoked from the linker script, does arch-specific init /// and passes control to the kernel boot function kmain(). +/// +/// # Safety +/// +/// Totally unsafe! We're in the hardware land. +/// #[no_mangle] pub unsafe extern "C" fn karch_start() -> ! { // Set sp to 0x80000 (just before kernel start)