Re: [PATCH v6] rust: iommu: add io_pgtable abstraction
From: Danilo Krummrich
Date: Sun Jan 18 2026 - 09:43:17 EST
On Sun Jan 18, 2026 at 11:08 AM CET, Alice Ryhl wrote:
> +use crate::{
> + alloc,
> + bindings,
> + device::{Bound, Device},
NIT: Wrong style.
@Joerg: Maybe you can fix it up when applying the patch, it should look like
this:
use crate::{
alloc,
bindings,
device::{
Bound,
Device, //
},
devres::Devres,
error::to_result,
io::PhysAddr,
prelude::*, //
};
Otherwise, looks good to me,
Reviewed-by: Danilo Krummrich <dakr@xxxxxxxxxx>