rust: dma: use "kernel vertical" style for imports

Convert all imports to use "kernel vertical" style.

With this, subsequent patches neither introduce unrelated changes nor
leave an inconsistent import pattern.

While at it, drop unnecessary imports covered by prelude::*.

Link: https://docs.kernel.org/rust/coding-guidelines.html#imports
Reviewed-by: Gary Guo <gary@garyguo.net>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Link: https://patch.msgid.link/20260320194626.36263-2-dakr@kernel.org
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
This commit is contained in:
Danilo Krummrich
2026-03-20 20:45:36 +01:00
parent 4b1948ef1d
commit 7ea1a61129

View File

@@ -5,12 +5,20 @@
//! C header: [`include/linux/dma-mapping.h`](srctree/include/linux/dma-mapping.h)
use crate::{
bindings, build_assert, device,
device::{Bound, Core},
error::{to_result, Result},
bindings,
build_assert,
device::{
self,
Bound,
Core, //
},
error::to_result,
prelude::*,
sync::aref::ARef,
transmute::{AsBytes, FromBytes},
transmute::{
AsBytes,
FromBytes, //
}, //
};
use core::ptr::NonNull;