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: 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 <dakr@kernel.org>
Signed-off-by: Marko Turk <mt@markoturk.info>
Link: https://patch.msgid.link/20260105213726.73000-1-mt@markoturk.info
Signed-off-by: Danilo Krummrich <dakr@kernel.org>

authored by

Marko Turk and committed by
Danilo Krummrich
31bc0aad 7bf97992

+1 -1
+1 -1
rust/kernel/io.rs
··· 87 87 /// }; 88 88 /// use core::ops::Deref; 89 89 /// 90 - /// // See also [`pci::Bar`] for a real example. 90 + /// // See also `pci::Bar` for a real example. 91 91 /// struct IoMem<const SIZE: usize>(IoRaw<SIZE>); 92 92 /// 93 93 /// impl<const SIZE: usize> IoMem<SIZE> {