1 //! Drivers for specific VirtIO devices. 2 3 pub mod blk; 4 #[cfg(feature = "alloc")] 5 pub mod console; 6 #[cfg(feature = "alloc")] 7 pub mod gpu; 8 #[cfg(feature = "alloc")] 9 pub mod input; 10 11 pub mod net; 12 13 pub mod socket; 14 #[cfg(feature = "alloc")] 15 pub mod sound; 16 17 pub(crate) mod common; 18