rust: auxiliary: remove unnecessary import

`kernel::str::CStr` is included in the prelude.

Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Link: https://lore.kernel.org/r/20250704-cstr-include-aux-v1-1-e1a404ae92ac@gmail.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
This commit is contained in:
Tamir Duberstein
2025-07-05 17:07:24 +02:00
committed by Danilo Krummrich
parent 8ae33576ea
commit 65f8f0d4e0
2 changed files with 1 additions and 3 deletions
-1
View File
@@ -10,7 +10,6 @@ use crate::{
driver,
error::{to_result, Result},
prelude::*,
str::CStr,
types::{ForeignOwnable, Opaque},
ThisModule,
};
+1 -2
View File
@@ -5,8 +5,7 @@
//! To make this driver probe, QEMU must be run with `-device pci-testdev`.
use kernel::{
auxiliary, bindings, c_str, device::Core, driver, error::Error, pci, prelude::*, str::CStr,
InPlaceModule,
auxiliary, bindings, c_str, device::Core, driver, error::Error, pci, prelude::*, InPlaceModule,
};
use pin_init::PinInit;