mirror of
https://github.com/torvalds/linux.git
synced 2025-11-01 17:18:25 +02:00
Updating drm-misc-next to the state of v6.17-rc1. Begins a new release cycle. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
17 lines
293 B
Rust
17 lines
293 B
Rust
// 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",
|
|
}
|