Re: [PATCH] rust: Prefer std::ptr over core::ptr

2025-02-18 Thread Paolo Bonzini
Queued, thanks. Paolo

[PATCH] rust: Prefer std::ptr over core::ptr

2025-02-17 Thread Zhao Liu
The std::ptr is same as core::ptr, but std has already been used in many cases and there's no need to choose non-std library. So, use std::ptr directly to make the used ptr library as consistent as possible. Signed-off-by: Zhao Liu --- rust/hw/char/pl011/src/device.rs | 2 +- rust/hw/char