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