[PATCH v9 22/29] rust: error: use `core::alloc::LayoutError`

From: Danilo Krummrich
Date: Fri Oct 04 2024 - 12:19:10 EST


Use `core::alloc::LayoutError` instead of `alloc::alloc::LayoutError` in
preparation to get rid of Rust's alloc crate.

Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx>
Reviewed-by: Benno Lossin <benno.lossin@xxxxxxxxx>
Reviewed-by: Gary Guo <gary@xxxxxxxxxxx>
Signed-off-by: Danilo Krummrich <dakr@xxxxxxxxxx>
---
rust/kernel/error.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust/kernel/error.rs b/rust/kernel/error.rs
index 2f1e4b783bfb..ca957bd262df 100644
--- a/rust/kernel/error.rs
+++ b/rust/kernel/error.rs
@@ -6,7 +6,7 @@

use crate::{alloc::AllocError, str::CStr};

-use alloc::alloc::LayoutError;
+use core::alloc::LayoutError;

use core::fmt;
use core::num::TryFromIntError;
--
2.46.1