summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nova-core/nova_core.rs
blob: a91cd924054b49966937a8db6aab9cd0614f10de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0

//! Nova Core GPU Driver

mod driver;
mod firmware;
mod gpu;
mod regs;
mod util;

kernel::module_pci_driver! {
    type: driver::NovaCore,
    name: "NovaCore",
    author: "Danilo Krummrich",
    description: "Nova Core GPU driver",
    license: "GPL v2",
    firmware: [],
}

kernel::module_firmware!(firmware::ModInfoBuilder);