mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
rust: prefer importing std::ptr over core::ptr
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 <zhao1.liu@intel.com> Link: https://lore.kernel.org/r/20250218080835.3341082-1-zhao1.liu@intel.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
4cb7040d85
commit
c48700e86d
3 changed files with 6 additions and 5 deletions
|
@ -4,8 +4,7 @@
|
|||
|
||||
//! Bindings for interrupt sources
|
||||
|
||||
use core::ptr;
|
||||
use std::{ffi::CStr, marker::PhantomData, os::raw::c_int};
|
||||
use std::{ffi::CStr, marker::PhantomData, os::raw::c_int, ptr};
|
||||
|
||||
use crate::{
|
||||
bindings::{self, qemu_set_irq},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue