Commit 12248a38 authored by Miguel Ojeda's avatar Miguel Ojeda Committed by Joerg Roedel
Browse files

rust: iommu: fix `srctree` link warning

The Rust kernel code should be kept `rustdoc`-clean [1].

Our custom `srctree` link checker in the `rustdoc` target reports:

    warning: srctree/ link to include/io-pgtable.h does not exist

Thus fix it.

Link: https://rust-for-linux.com/contributing#submit-checklist-addendum

 [1]
Fixes: 2e2f6b0e ("rust: iommu: add io_pgtable abstraction")
Signed-off-by: default avatarMiguel Ojeda <ojeda@kernel.org>
Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
parent 7222dd07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

//! IOMMU page table management.
//!
//! C header: [`include/io-pgtable.h`](srctree/include/io-pgtable.h)
//! C header: [`include/linux/io-pgtable.h`](srctree/include/linux/io-pgtable.h)

use core::{
    marker::PhantomData,