mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02: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:
parent
4b1948ef1d
commit
7ea1a61129
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user