From 863f6000b0cc02047397752bf675e25eac2c3846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Neuh=C3=A4user?= Date: Fri, 18 Jul 2025 14:54:22 +0200 Subject: [PATCH] Remove unused import --- src/mailbox.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mailbox.rs b/src/mailbox.rs index 2317d2e..3f94599 100644 --- a/src/mailbox.rs +++ b/src/mailbox.rs @@ -1,5 +1,3 @@ -use core::ptr::read_volatile; - use crate::{mmio_read, mmio_write, peripherals::uart::print}; const MBOX_BASE: u32 = 0x3F00_0000 + 0xB880;