4
4
//!
5
5
//! C header: [`include/linux/printk.h`](srctree/include/linux/printk.h)
6
6
//!
7
- //! Reference: <https://www .kernel.org/doc/html/latest /core-api/printk-basics.html>
7
+ //! Reference: <https://docs .kernel.org/core-api/printk-basics.html>
8
8
9
9
use core:: {
10
10
ffi:: { c_char, c_void} ,
@@ -197,7 +197,7 @@ macro_rules! print_macro (
197
197
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
198
198
/// `alloc::format!` for information about the formatting syntax.
199
199
///
200
- /// [`pr_emerg`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_emerg
200
+ /// [`pr_emerg`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_emerg
201
201
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
202
202
///
203
203
/// # Examples
@@ -221,7 +221,7 @@ macro_rules! pr_emerg (
221
221
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
222
222
/// `alloc::format!` for information about the formatting syntax.
223
223
///
224
- /// [`pr_alert`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_alert
224
+ /// [`pr_alert`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_alert
225
225
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
226
226
///
227
227
/// # Examples
@@ -245,7 +245,7 @@ macro_rules! pr_alert (
245
245
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
246
246
/// `alloc::format!` for information about the formatting syntax.
247
247
///
248
- /// [`pr_crit`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_crit
248
+ /// [`pr_crit`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_crit
249
249
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
250
250
///
251
251
/// # Examples
@@ -269,7 +269,7 @@ macro_rules! pr_crit (
269
269
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
270
270
/// `alloc::format!` for information about the formatting syntax.
271
271
///
272
- /// [`pr_err`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_err
272
+ /// [`pr_err`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_err
273
273
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
274
274
///
275
275
/// # Examples
@@ -293,7 +293,7 @@ macro_rules! pr_err (
293
293
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
294
294
/// `alloc::format!` for information about the formatting syntax.
295
295
///
296
- /// [`pr_warn`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_warn
296
+ /// [`pr_warn`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_warn
297
297
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
298
298
///
299
299
/// # Examples
@@ -317,7 +317,7 @@ macro_rules! pr_warn (
317
317
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
318
318
/// `alloc::format!` for information about the formatting syntax.
319
319
///
320
- /// [`pr_notice`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_notice
320
+ /// [`pr_notice`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_notice
321
321
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
322
322
///
323
323
/// # Examples
@@ -341,7 +341,7 @@ macro_rules! pr_notice (
341
341
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
342
342
/// `alloc::format!` for information about the formatting syntax.
343
343
///
344
- /// [`pr_info`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_info
344
+ /// [`pr_info`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_info
345
345
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
346
346
///
347
347
/// # Examples
@@ -367,7 +367,7 @@ macro_rules! pr_info (
367
367
/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
368
368
/// `alloc::format!` for information about the formatting syntax.
369
369
///
370
- /// [`pr_debug`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_debug
370
+ /// [`pr_debug`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_debug
371
371
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
372
372
///
373
373
/// # Examples
@@ -395,7 +395,7 @@ macro_rules! pr_debug (
395
395
/// `alloc::format!` for information about the formatting syntax.
396
396
///
397
397
/// [`pr_info!`]: crate::pr_info!
398
- /// [`pr_cont`]: https://www .kernel.org/doc/html/latest /core-api/printk-basics.html#c.pr_cont
398
+ /// [`pr_cont`]: https://docs .kernel.org/core-api/printk-basics.html#c.pr_cont
399
399
/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
400
400
///
401
401
/// # Examples
0 commit comments