diff options
| author | Tamir Duberstein <tamird@gmail.com> | 2025-10-18 15:16:30 -0400 |
|---|---|---|
| committer | Miguel Ojeda <ojeda@kernel.org> | 2025-10-20 04:04:24 +0200 |
| commit | 5b60cde74bb77aaec72d47fc208e4b057f618336 (patch) | |
| tree | cb0d2c665b2182a0048b4727d0de481d310dbe20 | |
| parent | 0e947bc22b0bdac7f708a0c6856f5999baff7b5d (diff) | |
rust: remove spurious `use core::fmt::Debug`
We want folks to use `kernel::fmt` but this is only used for `derive` so
can be removed entirely.
This backslid in commit ea60cea07d8c ("rust: add `Alignment` type").
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Link: https://patch.msgid.link/20251018-cstr-core-v18-9-9378a54385f8@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
| -rw-r--r-- | rust/kernel/ptr.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/kernel/ptr.rs b/rust/kernel/ptr.rs index 2e5e2a090480..e3893ed04049 100644 --- a/rust/kernel/ptr.rs +++ b/rust/kernel/ptr.rs @@ -2,7 +2,6 @@ //! Types and functions to work with pointers and addresses. -use core::fmt::Debug; use core::mem::align_of; use core::num::NonZero; |