diff options
| author | Mukesh Rathor <mrathor@linux.microsoft.com> | 2025-09-16 02:46:04 +0300 |
|---|---|---|
| committer | Wei Liu <wei.liu@kernel.org> | 2025-10-01 03:00:45 +0300 |
| commit | e3ec97c3abaf2fb68cc755cae3229288696b9f3d (patch) | |
| tree | 3deb8352ed9bd0f56db17ffbc81ea750716268bf /drivers/Makefile | |
| parent | 94b04355e6397a0a70b69c2571fa5c7d9990b835 (diff) | |
| download | linux-e3ec97c3abaf2fb68cc755cae3229288696b9f3d.tar.xz | |
Drivers: hv: Make CONFIG_HYPERV bool
With CONFIG_HYPERV and CONFIG_HYPERV_VMBUS separated, change CONFIG_HYPERV
to bool from tristate. CONFIG_HYPERV now becomes the core Hyper-V
hypervisor support, such as hypercalls, clocks/timers, Confidential
Computing setup, PCI passthru, etc. that doesn't involve VMBus or VMBus
devices.
Signed-off-by: Mukesh Rathor <mrathor@linux.microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'drivers/Makefile')
| -rw-r--r-- | drivers/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index b5749cf67044..7ad5744db0b6 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -161,7 +161,7 @@ obj-$(CONFIG_SOUNDWIRE) += soundwire/ # Virtualization drivers obj-$(CONFIG_VIRT_DRIVERS) += virt/ -obj-$(subst m,y,$(CONFIG_HYPERV)) += hv/ +obj-$(CONFIG_HYPERV) += hv/ obj-$(CONFIG_PM_DEVFREQ) += devfreq/ obj-$(CONFIG_EXTCON) += extcon/ |
