devices: vfio: Fix comment on VfioContainer::new_noiommu

BUG=none
TEST=none

Change-Id: Ib7dd0efba9679fbc4c10bb65cc114735fccabcc0
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3351435
Auto-Submit: Keiichi Watanabe <keiichiw@chromium.org>
Reviewed-by: Chirantan Ekbote <chirantan@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
This commit is contained in:
Keiichi Watanabe 2021-12-21 21:03:49 +09:00 committed by Commit Bot
parent 2e0a6532fd
commit 65d4a3e712

View file

@ -134,7 +134,7 @@ impl VfioContainer {
Self::new_inner(true /* host_iommu */)
}
/// Open VfioContainer with IOMMU enabled.
/// Open VfioContainer with IOMMU disabled.
pub fn new_noiommu() -> Result<Self> {
Self::new_inner(false /* host_iommu */)
}