summaryrefslogtreecommitdiff
path: root/rust/kernel/init.rs
diff options
context:
space:
mode:
authorChristian Brauner <brauner@kernel.org>2025-03-10 08:53:40 +0100
committerChristian Brauner <brauner@kernel.org>2025-03-10 08:53:40 +0100
commit38962d9b15ce3d50f5c61dc441b7c53f4e0d2e33 (patch)
tree81128bf50faaf28fc8bc65ebaa8e207c1b40cebc /rust/kernel/init.rs
parent3d5b9f3702f16e683047d0647117a5a297d1e284 (diff)
parent00a7d39898c8010bfd5ff62af31ca5db34421b38 (diff)
Merge mainline pipe changes
Mainline now contains various changes to pipes that are relevant for other pipe work this cycle. So merge them into the respective VFS tree. Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'rust/kernel/init.rs')
-rw-r--r--rust/kernel/init.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/kernel/init.rs b/rust/kernel/init.rs
index 3f9236c1c9d5..7fd1ea8265a5 100644
--- a/rust/kernel/init.rs
+++ b/rust/kernel/init.rs
@@ -870,7 +870,7 @@ pub unsafe trait PinInit<T: ?Sized, E = Infallible>: Sized {
/// use kernel::{types::Opaque, init::pin_init_from_closure};
/// #[repr(C)]
/// struct RawFoo([u8; 16]);
- /// extern {
+ /// extern "C" {
/// fn init_foo(_: *mut RawFoo);
/// }
///