Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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: 2e2f6b0ef855 ("rust: iommu: add io_pgtable abstraction")
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>

authored by

Miguel Ojeda and committed by
Joerg Roedel
12248a38 7222dd07

+1 -1
+1 -1
rust/kernel/iommu/pgtable.rs
··· 2 2 3 3 //! IOMMU page table management. 4 4 //! 5 - //! C header: [`include/io-pgtable.h`](srctree/include/io-pgtable.h) 5 + //! C header: [`include/linux/io-pgtable.h`](srctree/include/linux/io-pgtable.h) 6 6 7 7 use core::{ 8 8 marker::PhantomData,