summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/nova/nova.rs
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/nova/nova.rs')
-rw-r--r--drivers/gpu/drm/nova/nova.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nova/nova.rs b/drivers/gpu/drm/nova/nova.rs
new file mode 100644
index 000000000000..8893e58ee0db
--- /dev/null
+++ b/drivers/gpu/drm/nova/nova.rs
@@ -0,0 +1,17 @@
+// SPDX-License-Identifier: GPL-2.0
+
+//! Nova DRM Driver
+
+mod driver;
+mod file;
+mod gem;
+
+use crate::driver::NovaDriver;
+
+kernel::module_auxiliary_driver! {
+ type: NovaDriver,
+ name: "Nova",
+ authors: ["Danilo Krummrich"],
+ description: "Nova GPU driver",
+ license: "GPL v2",
+}