xref: /linux/rust/kernel/interop.rs (revision 4a57e0913e8c7fff407e97909f4ae48caa84d612)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 //! Infrastructure for interfacing Rust code with C kernel subsystems.
4 //!
5 //! This module is intended for low-level, unsafe Rust infrastructure code
6 //! that interoperates between Rust and C. It is *not* for use directly in
7 //! Rust drivers.
8 
9 pub mod list;
10