diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2025-05-15 11:23:20 +0300 |
---|---|---|
committer | Danilo Krummrich <dakr@kernel.org> | 2025-05-15 21:59:32 +0300 |
commit | 276c53c66e032c8e7cc0da63555f2742eb1afd69 (patch) | |
tree | 74e081c6aa2a7202899f863174619ae7758edfc4 | |
parent | a6fdda6dfeb0b900979b3aac3a661ecec9e67711 (diff) | |
download | linux-276c53c66e032c8e7cc0da63555f2742eb1afd69.tar.xz |
gpu: drm: nova: select AUXILIARY_BUS instead of depending on it
CONFIG_AUXILIARY_BUS cannot be enabled explicitly, and unless we select
it we have no way to include it (and thus to enable NOVA_DRM) unless
another driver happens to do it for us.
Fixes: cdeaeb9dd762 ("drm: nova-drm: add initial driver skeleton")
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Link: https://lore.kernel.org/r/20250515-aux_bus-v2-3-47c70f96ae9b@nvidia.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
-rw-r--r-- | drivers/gpu/drm/nova/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nova/Kconfig b/drivers/gpu/drm/nova/Kconfig index 123e96788484..cca6a3fea879 100644 --- a/drivers/gpu/drm/nova/Kconfig +++ b/drivers/gpu/drm/nova/Kconfig @@ -1,9 +1,9 @@ config DRM_NOVA tristate "Nova DRM driver" - depends on AUXILIARY_BUS depends on DRM=y depends on PCI depends on RUST + select AUXILIARY_BUS default n help Choose this if you want to build the Nova DRM driver for Nvidia |