cargo fmt

This commit is contained in:
2026-02-25 13:36:28 +08:00
parent d26113825c
commit ed28fcba2d
2 changed files with 5 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ use dyld::{Library, elf::EXIDX_Entry};
use libboard_zynq::{gic, mpcore};
use libcortex_a9::{asm::{dsb, isb},
cache::{bpiall, dcci_slice, iciallu},
mmu::{link_l2_page_table, L2Table},
mmu::{L2Table, link_l2_page_table},
sync_channel};
use libsupport_zynq::ram;
use log::{debug, error, info};

View File

@@ -4,7 +4,10 @@ use cslice::CSlice;
#[cfg(has_drtio)]
use super::{KERNEL_CHANNEL_0TO1, KERNEL_CHANNEL_1TO0, Message};
use crate::{artiq_raise, kernel::core1::{__rtio_page, L2_TEXT_TABLE}, pl::csr, rtio_core};
use crate::{artiq_raise,
kernel::core1::{__rtio_page, L2_TEXT_TABLE},
pl::csr,
rtio_core};
pub const RTIO_O_STATUS_WAIT: u8 = 1;
pub const RTIO_O_STATUS_UNDERFLOW: u8 = 2;