From 0ef9ca0dc69572c369773ec6d6ac367857237d8d Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 6 Aug 2023 17:35:24 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=93=A6=20Disable=20MiniUART?= =?UTF-8?q?=20driver?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- machine/src/platform/raspberrypi/drivers.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/machine/src/platform/raspberrypi/drivers.rs b/machine/src/platform/raspberrypi/drivers.rs index 6bc557b..e4e730d 100644 --- a/machine/src/platform/raspberrypi/drivers.rs +++ b/machine/src/platform/raspberrypi/drivers.rs @@ -51,8 +51,8 @@ pub fn qemu_bring_up_console() { // Global instances //-------------------------------------------------------------------------------------------------- -static MINI_UART: device_driver::MiniUart = - unsafe { device_driver::MiniUart::new(device_driver::UART1_BASE) }; +// static MINI_UART: device_driver::MiniUart = +// unsafe { device_driver::MiniUart::new(device_driver::UART1_BASE) }; static PL011_UART: device_driver::PL011Uart = unsafe { device_driver::PL011Uart::new(device_driver::UART0_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. -fn post_init_mini_uart() -> Result<(), &'static str> { - console::register_console(&MINI_UART); - crate::info!("[0] MiniUART is live!"); - Ok(()) -} +// fn post_init_mini_uart() -> Result<(), &'static str> { +// console::register_console(&MINI_UART); +// crate::info!("[0] MiniUART is live!"); +// Ok(()) +// } /// This must be called only after successful init of the PL011 UART driver. fn post_init_pl011_uart() -> Result<(), &'static str> {