kernel/interop.rs
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
9pub mod list;