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.rs18
1 files changed, 18 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..c675be404d9b
--- /dev/null
+++ b/drivers/gpu/drm/nova/nova.rs
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0
+
+//! Nova GPU Driver
+
+mod driver;
+mod file;
+mod gem;
+mod gpu;
+
+use crate::driver::NovaDriver;
+
+kernel::module_pci_driver! {
+ type: NovaDriver,
+ name: "Nova",
+ author: "Danilo Krummrich",
+ description: "Nova GPU driver",
+ license: "GPL v2",
+}