From: Marko Turk Date: Mon, 5 Jan 2026 21:37:42 +0000 (+0100) Subject: rust: io: remove square brackets from pci::Bar reference X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31bc0aade4e03a056a6b568571e59d3783c97ffc;p=thirdparty%2Fkernel%2Flinux.git rust: io: remove square brackets from pci::Bar reference Remove square brackets since this section is not a part of doc-comment so the reference will not be converted to a link in the generated docs. Suggested-by: Danilo Krummrich Signed-off-by: Marko Turk Link: https://patch.msgid.link/20260105213726.73000-1-mt@markoturk.info Signed-off-by: Danilo Krummrich --- diff --git a/rust/kernel/io.rs b/rust/kernel/io.rs index 98e8b84e68d11..a97eb44a9a877 100644 --- a/rust/kernel/io.rs +++ b/rust/kernel/io.rs @@ -87,7 +87,7 @@ impl IoRaw { /// }; /// use core::ops::Deref; /// -/// // See also [`pci::Bar`] for a real example. +/// // See also `pci::Bar` for a real example. /// struct IoMem(IoRaw); /// /// impl IoMem {