11 lines
164 B
Rust
11 lines
164 B
Rust
//! Serial device interfaces
|
|
|
|
use cfg_if::cfg_if;
|
|
|
|
cfg_if! {
|
|
if #[cfg(target_arch = "aarch64")] {
|
|
pub mod pl011;
|
|
// pub mod sunxi_uart;
|
|
}
|
|
}
|