[Qemu-devel] [RFC PATCH 19/25] edid: express dependencies with kconfig

Yang Zhong posted 25 patches 6 years, 10 months ago
Only 23 patches received!
There is a newer version of this series
[Qemu-devel] [RFC PATCH 19/25] edid: express dependencies with kconfig
Posted by Yang Zhong 6 years, 10 months ago
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
---
 hw/display/Kconfig | 2 ++
 hw/i2c/Kconfig     | 1 +
 2 files changed, 3 insertions(+)

diff --git a/hw/display/Kconfig b/hw/display/Kconfig
index 8ddce09ead..8b8f1027b1 100644
--- a/hw/display/Kconfig
+++ b/hw/display/Kconfig
@@ -38,6 +38,7 @@ config VGA_PCI
     default y
     depends on PCI
     select VGA
+    select EDID
 
 config VGA_ISA
     bool
@@ -59,6 +60,7 @@ config BOCHS_DISPLAY
     default y
     depends on PCI
     select VGA
+    select EDID
 
 config BLIZZARD
     bool
diff --git a/hw/i2c/Kconfig b/hw/i2c/Kconfig
index 74c9328729..ef1caa6d89 100644
--- a/hw/i2c/Kconfig
+++ b/hw/i2c/Kconfig
@@ -8,6 +8,7 @@ config SMBUS_EEPROM
 config DDC
     bool
     depends on I2C
+    select EDID
 
 config VERSATILE_I2C
     bool
-- 
2.17.1


Re: [Qemu-devel] [RFC PATCH 19/25] edid: express dependencies with kconfig
Posted by Thomas Huth 6 years, 10 months ago
On 2018-12-27 07:34, Yang Zhong wrote:
> Signed-off-by: Yang Zhong <yang.zhong@intel.com>
> ---
>  hw/display/Kconfig | 2 ++
>  hw/i2c/Kconfig     | 1 +
>  2 files changed, 3 insertions(+)
> 
> diff --git a/hw/display/Kconfig b/hw/display/Kconfig
> index 8ddce09ead..8b8f1027b1 100644
> --- a/hw/display/Kconfig
> +++ b/hw/display/Kconfig
> @@ -38,6 +38,7 @@ config VGA_PCI
>      default y
>      depends on PCI
>      select VGA
> +    select EDID
>  
>  config VGA_ISA
>      bool
> @@ -59,6 +60,7 @@ config BOCHS_DISPLAY
>      default y
>      depends on PCI
>      select VGA
> +    select EDID
>  
>  config BLIZZARD
>      bool
> diff --git a/hw/i2c/Kconfig b/hw/i2c/Kconfig
> index 74c9328729..ef1caa6d89 100644
> --- a/hw/i2c/Kconfig
> +++ b/hw/i2c/Kconfig
> @@ -8,6 +8,7 @@ config SMBUS_EEPROM
>  config DDC
>      bool
>      depends on I2C
> +    select EDID
>  
>  config VERSATILE_I2C
>      bool
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>