mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
rust: fix up formatting after merge
When I merged the rust 'use' imports, I didn't realize that there's an offical preferred idiomatic format - so while it all worked fine, it doesn't match what 'make rustfmt' wants to make it. Fix it up appropriately. Suggested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
b50ecc5aca
commit
1dc707e647
@ -6,11 +6,15 @@
|
||||
|
||||
use crate::{
|
||||
bindings,
|
||||
ffi::{c_int, c_long, c_uint},
|
||||
pid_namespace::PidNamespace,
|
||||
types::{ARef, NotThreadSafe, Opaque},
|
||||
};
|
||||
use crate::ffi::{c_int, c_long, c_uint};
|
||||
use core::{cmp::{Eq, PartialEq},ops::Deref, ptr};
|
||||
use core::{
|
||||
cmp::{Eq, PartialEq},
|
||||
ops::Deref,
|
||||
ptr,
|
||||
};
|
||||
|
||||
/// A sentinel value used for infinite timeouts.
|
||||
pub const MAX_SCHEDULE_TIMEOUT: c_long = c_long::MAX;
|
||||
|
Loading…
Reference in New Issue
Block a user