The nova-drm driver does not provide any value without nova-core being
selected as well, hence select NOVA_CORE.
Fixes: cdeaeb9dd762 ("drm: nova-drm: add initial driver skeleton")
Signed-off-by: Danilo Krummrich <dakr at kernel.org>
---
drivers/gpu/drm/nova/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/nova/Kconfig b/drivers/gpu/drm/nova/Kconfig
index 2a70aac64d7e..3e637ad7b5ba 100644
--- a/drivers/gpu/drm/nova/Kconfig
+++ b/drivers/gpu/drm/nova/Kconfig
@@ -5,6 +5,7 @@ config DRM_NOVA
depends on PCI
depends on RUST
select AUXILIARY_BUS
+ select NOVA_CORE
default n
help
Choose this if you want to build the Nova DRM driver for Nvidia
--
2.51.0
On Tue Oct 28, 2025 at 8:00 PM JST, Danilo Krummrich wrote:> The nova-drm driver does not provide any value without nova-core being > selected as well, hence select NOVA_CORE. > > Fixes: cdeaeb9dd762 ("drm: nova-drm: add initial driver skeleton") > Signed-off-by: Danilo Krummrich <dakr at kernel.org>Reviewed-by: Alexandre Courbot <acourbot at nvidia.com>
On 10/28/25 4:00 AM, Danilo Krummrich wrote:> The nova-drm driver does not provide any value without nova-core being > selected as well, hence select NOVA_CORE. > > Fixes: cdeaeb9dd762 ("drm: nova-drm: add initial driver skeleton") > Signed-off-by: Danilo Krummrich <dakr at kernel.org> > --- > drivers/gpu/drm/nova/Kconfig | 1 + > 1 file changed, 1 insertion(+)Reviewed-by: John Hubbard <jhubbard at nvidia.com> thanks, John Hubbard> > diff --git a/drivers/gpu/drm/nova/Kconfig b/drivers/gpu/drm/nova/Kconfig > index 2a70aac64d7e..3e637ad7b5ba 100644 > --- a/drivers/gpu/drm/nova/Kconfig > +++ b/drivers/gpu/drm/nova/Kconfig > @@ -5,6 +5,7 @@ config DRM_NOVA > depends on PCI > depends on RUST > select AUXILIARY_BUS > + select NOVA_CORE > default n > help > Choose this if you want to build the Nova DRM driver for Nvidia
On Tue, 2025-10-28 at 12:00 +0100, Danilo Krummrich wrote:> The nova-drm driver does not provide any value without nova-core being > selected as well, hence select NOVA_CORE.Isn't the converse also true? nova-core doesn't do anything of value without a DRM driver.