1 // SPDX-License-Identifier: GPL-2.0 OR MIT 2 3 //! DRM subsystem abstractions. 4 5 pub mod device; 6 pub mod driver; 7 pub mod file; 8 pub mod gem; 9 pub mod gpuvm; 10 pub mod ioctl; 11 12 pub use self::device::Device; 13 pub use self::driver::Driver; 14 pub use self::driver::DriverInfo; 15 pub use self::driver::Registration; 16 pub use self::file::File; 17 18 pub(crate) mod private { 19 pub trait Sealed {} 20 } 21