[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/7] hw/nvram: Declare FW_CFG_DMA Kconfig symbol in hw/nvram/
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 3/7] hw/nvram: Declare FW_CFG_DMA Kconfig symbol in hw/nvram/ |
Date: |
Mon, 26 Apr 2021 21:35:16 +0200 |
fw_cfg related files are maintained in hw/nvram/, so it makes
sense to declare the FW_CFG_DMA Kconfig symbol there, along
with the FW_CFG one.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
hw/display/Kconfig | 3 ---
hw/nvram/Kconfig | 4 ++++
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/hw/display/Kconfig b/hw/display/Kconfig
index ca46b5830e7..0e4bb596c43 100644
--- a/hw/display/Kconfig
+++ b/hw/display/Kconfig
@@ -6,9 +6,6 @@ config DDC
config EDID
bool
-config FW_CFG_DMA
- bool
-
config VGA_CIRRUS
bool
default y if PCI_DEVICES
diff --git a/hw/nvram/Kconfig b/hw/nvram/Kconfig
index cab1070375f..59fac45c315 100644
--- a/hw/nvram/Kconfig
+++ b/hw/nvram/Kconfig
@@ -1,6 +1,10 @@
config FW_CFG
bool
+config FW_CFG_DMA
+ bool
+ select FW_CFG
+
config DS1225Y
bool
--
2.26.3
- [PATCH 0/7] hw/nvram/fw_cfg: Do not build device if not needed (Spring cleanup), Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 1/7] stubs: Restrict fw_cfg stubs to sysemu, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 2/7] hw/nvram: Rename FW_CFG_MIPS as generic FW_CFG Kconfig symbol, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 3/7] hw/nvram: Declare FW_CFG_DMA Kconfig symbol in hw/nvram/,
Philippe Mathieu-Daudé <=
- [PATCH 4/7] hw/acpi/vmgenid: Make ACPI_VMGENID depends on FW_CFG Kconfig, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 6/7] hw/{arm,hppa,riscv}: Add fw_cfg arch-specific stub, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 5/7] hw: Have machines Kconfig-select FW_CFG, Philippe Mathieu-Daudé, 2021/04/26