1//! Device drivers module. 2//! 3//! This module encapsulates various device drivers for the Scarlet kernel. 4 5pub mod virtio; 6pub mod uart; 7pub mod block;