remove enable_fpu from main_core1

This commit is contained in:
Simon Renblad 2025-01-06 17:59:31 +08:00
parent b357121749
commit d622ae26b2

View File

@ -8,7 +8,7 @@ use dyld::{self, elf::EXIDX_Entry, Library};
use libboard_zynq::{gic, mpcore};
use libcortex_a9::{asm::{dsb, isb},
cache::{bpiall, dcci_slice, iciallu},
enable_fpu, sync_channel};
sync_channel};
use libsupport_zynq::ram;
use log::{debug, error, info};
@ -126,7 +126,6 @@ impl KernelImage {
#[no_mangle]
pub extern "C" fn main_core1() {
enable_fpu();
debug!("Core1 started");
ram::init_alloc_core1();