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