We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eef24ea commit 33001eeCopy full SHA for 33001ee
rust/kernel/module_param.rs
@@ -2,7 +2,7 @@ use core::fmt::Write;
2
3
/// Types that can be used for module parameters.
4
/// Note that displaying the type in `sysfs` will fail if `to_string` returns
5
-/// more than 4K bytes (including an additional null terminator).
+/// more than 4 KiB (including an additional null terminator).
6
pub trait ModuleParam : core::fmt::Display + core::marker::Sized {
7
fn try_from_param_arg(arg: &[u8]) -> Option<Self>;
8
0 commit comments