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