Files

20 lines
360 B
Rust
Raw Permalink Normal View History

2025-04-11 01:55:21 +02:00
// SPDX-License-Identifier: GPL-2.0 OR MIT
//! DRM subsystem abstractions.
2025-04-11 01:55:23 +02:00
pub mod device;
2025-04-11 01:55:22 +02:00
pub mod driver;
2025-04-11 01:55:25 +02:00
pub mod file;
2025-04-11 01:55:26 +02:00
pub mod gem;
2025-04-11 01:55:21 +02:00
pub mod ioctl;
2025-04-11 01:55:22 +02:00
2025-04-11 01:55:23 +02:00
pub use self::device::Device;
2025-04-11 01:55:22 +02:00
pub use self::driver::Driver;
pub use self::driver::DriverInfo;
2025-04-11 01:55:24 +02:00
pub use self::driver::Registration;
2025-04-11 01:55:25 +02:00
pub use self::file::File;
2025-04-11 01:55:22 +02:00
pub(crate) mod private {
pub trait Sealed {}
}