From 1a888d63d5255ccfe72616ae69a5ed2bcb41829f Mon Sep 17 00:00:00 2001 From: pjht Date: Sun, 25 Aug 2024 10:12:26 -0500 Subject: [PATCH] Remove PRD debug prints --- src/port.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/port.rs b/src/port.rs index e7fbcc2..6641165 100644 --- a/src/port.rs +++ b/src/port.rs @@ -208,11 +208,6 @@ impl AhciPort { } else { 0x40_0000 }; - println!( - "Prd::new({:#x}, {:#x}, false)", - data_buf_phys + (i * 0x40_0000) as u64, - size as u32 - ); Prd::new(data_buf_phys + (i * 0x40_0000) as u64, size as u32, false).unwrap() }) .collect_vec();