mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-12 01:20:14 +00:00
RUST_FW_LOADER_ABSTRACTIONS was depended on by NOVA_CORE, but NOVA_CORE
is selected by DRM_NOVA. This creates a situation where, if DRM_NOVA is
selected, NOVA_CORE gets enabled but not RUST_FW_LOADER_ABSTRACTIONS,
which results in a build error.
Since the firmware loader is an implementation detail of the driver, it
should be enabled along with it, so change the "depends on" to a
"select".
Fixes: 54e6baf123fd ("gpu: nova-core: add initial driver stub")
Closes: https://lore.kernel.org/oe-kbuild-all/202512061721.rxKGnt5q-lkp@intel.com/
Tested-by: Alyssa Ross <hi@alyssa.is>
Acked-by: Danilo Krummrich <dakr@kernel.org>
Link: https://patch.msgid.link/20251106-b4-select-rust-fw-v3-2-771172257755@nvidia.com
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
17 lines
458 B
Plaintext
17 lines
458 B
Plaintext
config NOVA_CORE
|
|
tristate "Nova Core GPU driver"
|
|
depends on 64BIT
|
|
depends on PCI
|
|
depends on RUST
|
|
select RUST_FW_LOADER_ABSTRACTIONS
|
|
select AUXILIARY_BUS
|
|
default n
|
|
help
|
|
Choose this if you want to build the Nova Core driver for Nvidia
|
|
GPUs based on the GPU System Processor (GSP). This is true for Turing
|
|
and later GPUs.
|
|
|
|
This driver is work in progress and may not be functional.
|
|
|
|
If M is selected, the module will be called nova_core.
|