Files
RedBear-OS/virtio-core/src/lib.rs
T
bjorn3 e973f89139 Remove unnecessary feature gates
Some of these have been stabilized while others were likely no longer
used at all.
2025-02-22 14:38:33 +01:00

20 lines
363 B
Rust

pub mod spec;
pub mod transport;
pub mod utils;
mod probe;
#[cfg(target_arch = "aarch64")]
#[path = "arch/aarch64.rs"]
mod arch;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
#[path = "arch/x86.rs"]
mod arch;
#[cfg(target_arch = "riscv64")]
#[path = "arch/riscv64.rs"]
mod arch;
pub use probe::{probe_device, reinit, Device, MSIX_PRIMARY_VECTOR};