From 071ce1e98f9cab50e68bce1d29bf7b9cc80cb635 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 5 Apr 2026 13:06:06 +0200 Subject: [PATCH] drivers/graphics/ihdgd: Fix a couple of warnings --- drivers/graphics/ihdgd/src/device/buffer.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/graphics/ihdgd/src/device/buffer.rs b/drivers/graphics/ihdgd/src/device/buffer.rs index 2cd83ea9e9..4ffbc8937f 100644 --- a/drivers/graphics/ihdgd/src/device/buffer.rs +++ b/drivers/graphics/ihdgd/src/device/buffer.rs @@ -1,6 +1,4 @@ -use std::{mem, ptr, slice}; - -use common::dma::Dma; +use std::{ptr, slice}; use crate::device::ggtt::GlobalGtt; use crate::device::MmioRegion;