diff options
| author | Jani Nikula <jani.nikula@intel.com> | 2025-11-04 13:25:36 +0300 |
|---|---|---|
| committer | Jani Nikula <jani.nikula@intel.com> | 2025-12-10 12:02:53 +0300 |
| commit | f88cb2660bd09fd76b54e6bd2e62f3d7501147b6 (patch) | |
| tree | 4980e7d3c629b0b07b014d4966619f7bbb59d58f | |
| parent | 6d2b55f7d7011ebc11c933bc680ba1b050ce1e88 (diff) | |
| download | linux-f88cb2660bd09fd76b54e6bd2e62f3d7501147b6.tar.xz | |
drm/vgem: move Kconfig under driver directory
Almost all DRM driver Kconfig options are in dedicated Kconfig files
under driver directories. Follow suit in vgem.
Reviewed-by: Maarten Lankhorst <dev@lankhorst.se>
Link: https://patch.msgid.link/51935bfb299e8c64beae5a654d908231e2ec9c7f.1762251845.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
| -rw-r--r-- | drivers/gpu/drm/Kconfig | 9 | ||||
| -rw-r--r-- | drivers/gpu/drm/vgem/Kconfig | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 15c2f941a4cd..8ec9c06b45b7 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -283,14 +283,7 @@ source "drivers/gpu/drm/xe/Kconfig" source "drivers/gpu/drm/kmb/Kconfig" -config DRM_VGEM - tristate "Virtual GEM provider" - depends on DRM && MMU - select DRM_GEM_SHMEM_HELPER - help - Choose this option to get a virtual graphics memory manager, - as used by Mesa's software renderer for enhanced performance. - If M is selected the module will be called vgem. +source "drivers/gpu/drm/vgem/Kconfig" source "drivers/gpu/drm/vkms/Kconfig" diff --git a/drivers/gpu/drm/vgem/Kconfig b/drivers/gpu/drm/vgem/Kconfig new file mode 100644 index 000000000000..c419cdadd54c --- /dev/null +++ b/drivers/gpu/drm/vgem/Kconfig @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-only +config DRM_VGEM + tristate "Virtual GEM provider" + depends on DRM && MMU + select DRM_GEM_SHMEM_HELPER + help + Choose this option to get a virtual graphics memory manager, + as used by Mesa's software renderer for enhanced performance. + If M is selected the module will be called vgem. |
