Re: [PATCH 1/8] rust: dma: use "kernel vertical" style for imports

2026-03-03 Thread Gary Guo
On Tue Mar 3, 2026 at 4:22 PM GMT, Danilo Krummrich wrote:
> 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
> Signed-off-by: Danilo Krummrich 

Reviewed-by: Gary Guo 

> ---
>  rust/kernel/dma.rs | 16 
>  1 file changed, 12 insertions(+), 4 deletions(-)



[PATCH 1/8] rust: dma: use "kernel vertical" style for imports

2026-03-03 Thread Danilo Krummrich
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
Signed-off-by: Danilo Krummrich 
---
 rust/kernel/dma.rs | 16 
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/rust/kernel/dma.rs b/rust/kernel/dma.rs
index cd2957b5f260..54512278085e 100644
--- a/rust/kernel/dma.rs
+++ b/rust/kernel/dma.rs
@@ -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;
 
-- 
2.53.0