mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 03:11:11 -04:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user