ANDROID: rust: miscdevice: fix formatting

An import was removed from these imports during an LTS merge, which
means that rustfmt now prefers a different formatting of these imports.

Fixes: b3fb80bdc6 ("Merge 6.12.19 into android16-6.12")
Change-Id: I14bbe861e738767a6057a320cbe8cf5cf50f5d05
Signed-off-by: Alice Ryhl <aliceryhl@google.com>
This commit is contained in:
Alice Ryhl
2025-06-20 11:52:08 +00:00
parent 4f7b72e026
commit 3744083cdb

View File

@@ -20,12 +20,7 @@ use crate::{
str::CStr,
types::{AsBytes, ForeignOwnable, Opaque},
};
use core::{
marker::PhantomData,
mem::MaybeUninit,
pin::Pin,
ptr::NonNull,
};
use core::{marker::PhantomData, mem::MaybeUninit, pin::Pin, ptr::NonNull};
/// The kernel `loff_t` type.
#[allow(non_camel_case_types)]