summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2021-11-18 14:41:12 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-11-25 10:41:32 +0000
commite961033ec479d651d21de7c54c990abfc1d7063d (patch)
tree71dcccc2e2cd7244243193cf6114f2507ca43cd4
parent9ed2490e5bbc5f02e90f521f52b1f9da3b0cd0bb (diff)
downloadcoreboot-e961033ec479d651d21de7c54c990abfc1d7063d.tar.gz
coreboot-e961033ec479d651d21de7c54c990abfc1d7063d.tar.bz2
coreboot-e961033ec479d651d21de7c54c990abfc1d7063d.zip
soc/intel/graphics/Kconfig: Guard options
Change-Id: I3c252e31867e4560fb5aaf12273288f4ff18ae3d Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59471 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r--src/soc/intel/common/block/graphics/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/graphics/Kconfig b/src/soc/intel/common/block/graphics/Kconfig
index 8288150a73f8..1ec074e9cd20 100644
--- a/src/soc/intel/common/block/graphics/Kconfig
+++ b/src/soc/intel/common/block/graphics/Kconfig
@@ -3,6 +3,8 @@ config SOC_INTEL_COMMON_BLOCK_GRAPHICS
help
Intel Processor common Graphics support
+if SOC_INTEL_COMMON_BLOCK_GRAPHICS
+
config SOC_INTEL_CONFIGURE_DDI_A_4_LANES
bool
help
@@ -16,3 +18,5 @@ config SOC_INTEL_DISABLE_IGD
Selected by mainboard user that need to skip IGD initialization
where OS can only use one GPU hence need to disable IGD and don't
need to run FSP GOP.
+
+endif