From 060548d4fe1a9cc56c0b513afdb390241bc90441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Wed, 1 May 2024 22:30:20 +0200 Subject: [PATCH] fix(x86_64/mmio): remove redundant, inactive print statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/arch/x86_64/kernel/mmio.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/arch/x86_64/kernel/mmio.rs b/src/arch/x86_64/kernel/mmio.rs index 566c29cc9f..9a75836b79 100644 --- a/src/arch/x86_64/kernel/mmio.rs +++ b/src/arch/x86_64/kernel/mmio.rs @@ -182,8 +182,6 @@ fn guess_device() -> Result<(&'static mut MmioRegisterLayout, u8), &'static str> BasePageSize::SIZE as usize, ); - //mmio.print_information(); - return Ok((mmio, IRQ_NUMBER)); }