diff options
author | Alexey Makhalov <[email protected]> | 2024-06-15 18:25:10 -0700 |
---|---|---|
committer | Borislav Petkov (AMD) <[email protected]> | 2024-06-17 11:56:54 +0200 |
commit | 8c4d6945fe5bd04ff847c3c788abd34ca354ecee (patch) | |
tree | 943adf5e6ea51b92d43810d6a1563be4a17e9cb0 | |
parent | 6ba59ff4227927d3a8530fc2973b80e94b54d58f (diff) |
drm/vmwgfx: Fix missing HYPERVISOR_GUEST dependency
VMWARE_HYPERCALL alternative will not work as intended without VMware guest code
initialization.
[ bp: note that this doesn't reproduce with newer gccs so it must be
something gcc-9-specific. ]
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Alexey Makhalov <[email protected]>
Signed-off-by: Borislav Petkov (AMD) <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/gpu/drm/vmwgfx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/Kconfig b/drivers/gpu/drm/vmwgfx/Kconfig index faddae3d6ac2..6f1ac940cbae 100644 --- a/drivers/gpu/drm/vmwgfx/Kconfig +++ b/drivers/gpu/drm/vmwgfx/Kconfig @@ -2,7 +2,7 @@ config DRM_VMWGFX tristate "DRM driver for VMware Virtual GPU" depends on DRM && PCI && MMU - depends on X86 || ARM64 + depends on (X86 && HYPERVISOR_GUEST) || ARM64 select DRM_TTM select DRM_TTM_HELPER select MAPPING_DIRTY_HELPERS |