Skip to content

Commit aacae44

Browse files
ojedagregkh
authored andcommitted
rust: print: use explicit link in documentation
commit a53d8cd upstream. The future `rustdoc` in the Rust 1.73.0 upgrade requires an explicit link for `pr_info!`: error: unresolved link to `pr_info` --> rust/kernel/print.rs:395:63 | 395 | /// Use only when continuing a previous `pr_*!` macro (e.g. [`pr_info!`]). | ^^^^^^^^ no item named `pr_info` in scope | = note: `macro_rules` named `pr_info` exists in this crate, but it is not in scope at this link's location = note: `-D rustdoc::broken-intra-doc-links` implied by `-D warnings` Thus do so to avoid a broken link while upgrading. Reviewed-by: Alice Ryhl <[email protected]> Reviewed-by: Vincenzo Palazzo <[email protected]> Reviewed-by: Finn Behrens <[email protected]> Reviewed-by: Martin Rodriguez Reboredo <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent e8e7a52 commit aacae44

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rust/kernel/print.rs

+1
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ macro_rules! pr_debug (
399399
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
400400
/// `alloc::format!` for information about the formatting syntax.
401401
///
402+
/// [`pr_info!`]: crate::pr_info!
402403
/// [`pr_cont`]: https://www.kernel.org/doc/html/latest/core-api/printk-basics.html#c.pr_cont
403404
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
404405
///

0 commit comments

Comments
 (0)