1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod core; pub fn reboot() { core::reboot(); } pub fn shutdown() { core::shutdown(); } pub mod dvfs; pub mod governor; pub mod idle; pub mod sleep; pub mod thermal;