61dc527156
This will make it easier to share this code with gpu drivers in the base repo.
11 lines
146 B
Rust
11 lines
146 B
Rust
#![feature(macro_metavar_expr_concat)]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
|
|
#[macro_use]
|
|
mod ioctl_data;
|
|
pub use ioctl_data::IoctlData;
|
|
|
|
pub mod drm;
|