Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/hyperv: move Kconfig under driver directory

Almost all DRM driver Kconfig options are in dedicated Kconfig files
under driver directories. Follow suit in hyperv.

Cc: Deepak Rawat <drawat.floss@gmail.com>
Reviewed-by: Deepak Rawat <drawat.floss@gmail.com>
Reviewed-by: Maarten Lankhorst <dev@lankhorst.se>
Link: https://patch.msgid.link/4923196ab968bfdbcc2d7572d9be9886c32c06c9.1762251845.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>

+15 -13
+1 -13
drivers/gpu/drm/Kconfig
··· 398 398 399 399 source "drivers/gpu/drm/tyr/Kconfig" 400 400 401 - config DRM_HYPERV 402 - tristate "DRM Support for Hyper-V synthetic video device" 403 - depends on DRM && PCI && HYPERV_VMBUS 404 - select DRM_CLIENT_SELECTION 405 - select DRM_KMS_HELPER 406 - select DRM_GEM_SHMEM_HELPER 407 - help 408 - This is a KMS driver for Hyper-V synthetic video device. Choose this 409 - option if you would like to enable drm driver for Hyper-V virtual 410 - machine. Unselect Hyper-V framebuffer driver (CONFIG_FB_HYPERV) so 411 - that DRM driver is used by default. 412 - 413 - If M is selected the module will be called hyperv_drm. 401 + source "drivers/gpu/drm/hyperv/Kconfig" 414 402 415 403 # Separate option as not all DRM drivers use it 416 404 config DRM_PANEL_BACKLIGHT_QUIRKS
+14
drivers/gpu/drm/hyperv/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + config DRM_HYPERV 3 + tristate "DRM Support for Hyper-V synthetic video device" 4 + depends on DRM && PCI && HYPERV_VMBUS 5 + select DRM_CLIENT_SELECTION 6 + select DRM_KMS_HELPER 7 + select DRM_GEM_SHMEM_HELPER 8 + help 9 + This is a KMS driver for Hyper-V synthetic video device. Choose this 10 + option if you would like to enable drm driver for Hyper-V virtual 11 + machine. Unselect Hyper-V framebuffer driver (CONFIG_FB_HYPERV) so 12 + that DRM driver is used by default. 13 + 14 + If M is selected the module will be called hyperv_drm.