refactor: 📦 Disable MiniUART driver
This commit is contained in:
parent
decdd0c56d
commit
0ef9ca0dc6
|
@ -51,8 +51,8 @@ pub fn qemu_bring_up_console() {
|
||||||
// Global instances
|
// Global instances
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
static MINI_UART: device_driver::MiniUart =
|
// static MINI_UART: device_driver::MiniUart =
|
||||||
unsafe { device_driver::MiniUart::new(device_driver::UART1_BASE) };
|
// unsafe { device_driver::MiniUart::new(device_driver::UART1_BASE) };
|
||||||
static PL011_UART: device_driver::PL011Uart =
|
static PL011_UART: device_driver::PL011Uart =
|
||||||
unsafe { device_driver::PL011Uart::new(device_driver::UART0_BASE) };
|
unsafe { device_driver::PL011Uart::new(device_driver::UART0_BASE) };
|
||||||
static GPIO: device_driver::GPIO = unsafe { device_driver::GPIO::new(device_driver::GPIO_BASE) };
|
static GPIO: device_driver::GPIO = unsafe { device_driver::GPIO::new(device_driver::GPIO_BASE) };
|
||||||
|
@ -70,11 +70,11 @@ static INTERRUPT_CONTROLLER: device_driver::GICv2 =
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
/// This must be called only after successful init of the Mini UART driver.
|
/// This must be called only after successful init of the Mini UART driver.
|
||||||
fn post_init_mini_uart() -> Result<(), &'static str> {
|
// fn post_init_mini_uart() -> Result<(), &'static str> {
|
||||||
console::register_console(&MINI_UART);
|
// console::register_console(&MINI_UART);
|
||||||
crate::info!("[0] MiniUART is live!");
|
// crate::info!("[0] MiniUART is live!");
|
||||||
Ok(())
|
// Ok(())
|
||||||
}
|
// }
|
||||||
|
|
||||||
/// This must be called only after successful init of the PL011 UART driver.
|
/// This must be called only after successful init of the PL011 UART driver.
|
||||||
fn post_init_pl011_uart() -> Result<(), &'static str> {
|
fn post_init_pl011_uart() -> Result<(), &'static str> {
|
||||||
|
|
Loading…
Reference in New Issue