sparreal_kernel/
fdt.rs

1
2
3
4
5
6
7
pub use fdt_parser::*;

use crate::driver::device_tree::get_device_tree;

pub fn device_tree<'a>() -> Option<Fdt<'a>> {
    get_device_tree()
}