diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-23 16:16:13 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-23 16:16:13 +0200 |
commit | b9e6612d61de48dce0d838333b7a27583e0f5e2c (patch) | |
tree | bf807b4e93fad040ecfc0bc2ee4be35b658b0b2c /drivers/gpu | |
parent | Merge tag 'powerpc-6.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/p... (diff) | |
parent | x86/resctrl: Don't try to free nonexistent RMIDs (diff) | |
download | linux-b9e6612d61de48dce0d838333b7a27583e0f5e2c.tar.xz linux-b9e6612d61de48dce0d838333b7a27583e0f5e2c.zip |
Merge tag 'x86_urgent_for_v6.10_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Borislav Petkov:
- An ARM-relevant fix to not free default RMIDs of a resource control
group
- A randconfig build fix for the VMware virtual GPU driver
* tag 'x86_urgent_for_v6.10_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/resctrl: Don't try to free nonexistent RMIDs
drm/vmwgfx: Fix missing HYPERVISOR_GUEST dependency
Diffstat (limited to 'drivers/gpu')
-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 |