Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2
3//! Nova DRM Driver
4
5mod driver;
6mod file;
7mod gem;
8
9use crate::driver::NovaDriver;
10
11kernel::module_auxiliary_driver! {
12 type: NovaDriver,
13 name: "Nova",
14 authors: ["Danilo Krummrich"],
15 description: "Nova GPU driver",
16 license: "GPL v2",
17}